summaryrefslogtreecommitdiff
path: root/image/gif.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-03-11 22:08:57 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-03-11 22:08:57 +0000
commit9cf51227979c84a9ed74c339290c3f65f0d58c4f (patch)
treea0c2a9fd6b328eca1dfbdf17989b5ef175427124 /image/gif.c
parent58c217cbeeca8bac6c5edd3d156b1f5bbefed3d3 (diff)
downloadnetsurf-9cf51227979c84a9ed74c339290c3f65f0d58c4f.tar.gz
netsurf-9cf51227979c84a9ed74c339290c3f65f0d58c4f.tar.bz2
Content handlers should not call warn_user - they should broadcast the
error using content_broadcast and leave it to the content owner(s) to decide what to do about it. Only use warn_user for top-level contents. svn path=/trunk/netsurf/; revision=3204
Diffstat (limited to 'image/gif.c')
-rw-r--r--image/gif.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/image/gif.c b/image/gif.c
index 02148f264..a3e0b00af 100644
--- a/image/gif.c
+++ b/image/gif.c
@@ -48,7 +48,6 @@ bool nsgif_create(struct content *c, const char *params[]) {
if (!c->data.gif.gif) {
msg_data.error = messages_get("NoMemory");
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
- warn_user("NoMemory", 0);
return false;
}
return true;
@@ -74,7 +73,6 @@ bool nsgif_convert(struct content *c, int iwidth, int iheight) {
case GIF_INSUFFICIENT_MEMORY:
msg_data.error = messages_get("NoMemory");
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
- warn_user("NoMemory", 0);
return false;
case GIF_INSUFFICIENT_DATA:
case GIF_DATA_ERROR: