summaryrefslogtreecommitdiff
path: root/content/content.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/content.c')
-rw-r--r--content/content.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/content/content.c b/content/content.c
index c3f8d7855..ed5202009 100644
--- a/content/content.c
+++ b/content/content.c
@@ -1112,10 +1112,8 @@ nserror content_abort(struct content *c)
{
LOG(("Aborting %p", c));
- if (c->status == CONTENT_STATUS_READY) {
- if (c->handler->stop != NULL)
- c->handler->stop(c);
- }
+ if (c->handler->stop != NULL)
+ c->handler->stop(c);
/* And for now, abort our llcache object */
return llcache_handle_abort(c->llcache);