summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/content.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/content/content.c b/content/content.c
index 8db831255..7b9207d44 100644
--- a/content/content.c
+++ b/content/content.c
@@ -697,13 +697,6 @@ void content_convert(struct content *c)
content_set_ready(c);
content_set_done(c);
}
-
- /* After conversion, the content must be in error or either the
- * READY or DONE state and must not be locked */
- assert(c->status == CONTENT_STATUS_READY ||
- c->status == CONTENT_STATUS_DONE ||
- c->status == CONTENT_STATUS_ERROR);
- assert(c->locked == false);
}
/**