From e95c11dac89e39634aa9fa82a13ac780740122ee Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 7 Nov 2019 21:35:24 +0000 Subject: remove user warning and log error instead --- content/handlers/html/html.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'content/handlers/html/html.c') diff --git a/content/handlers/html/html.c b/content/handlers/html/html.c index 33dcf2aaa..88c77fdd0 100644 --- a/content/handlers/html/html.c +++ b/content/handlers/html/html.c @@ -2296,10 +2296,11 @@ static bool html_drop_file_at_point(struct content *c, int x, int y, char *file) ret = guit->utf8->local_to_utf8(buffer, file_len, &utf8_buff); if (ret != NSERROR_OK) { /* bad encoding shouldn't happen */ + NSLOG(netsurf, ERROR, + "local to utf8 encoding failed (%s)", + messages_get_errorcode(ret)); assert(ret != NSERROR_BAD_ENCODING); - NSLOG(netsurf, INFO, "local to utf8 encoding failed"); free(buffer); - guit->misc->warning("NoMemory", NULL); return true; } -- cgit v1.2.3