Remove bogus assertions: content handlers which spawn fetches may not transition out of the LOADING state until after the fetches have completed.

svn path=/trunk/netsurf/; revision=11860
This commit is contained in:
John Mark Bell 2011-02-28 20:16:48 +00:00
parent abbf958b4c
commit 8d13c93c89
1 changed files with 0 additions and 7 deletions

View File

@ -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);
}
/**