From 737d6ad557a7ee6300cb6c02cf0d32ed55b13531 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 11 Apr 2010 10:52:18 +0000 Subject: Merge jmb/kill-reentrancy. r=vince svn path=/trunk/netsurf/; revision=10346 --- content/content.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'content') diff --git a/content/content.c b/content/content.c index a5890e970..397c645e4 100644 --- a/content/content.c +++ b/content/content.c @@ -667,8 +667,10 @@ void content_convert(struct content *c) if (c->status == CONTENT_STATUS_READY) content_set_ready(c); - if (c->status == CONTENT_STATUS_DONE) + if (c->status == CONTENT_STATUS_DONE) { + content_set_ready(c); content_set_done(c); + } } /** -- cgit v1.2.3