diff options
author | Daniel Friesel <derf@finalrewind.org> | 2013-02-08 22:31:29 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2013-02-08 22:31:29 +0100 |
commit | a889a9f9a866f5dea241773f04d52fafd3ab0175 (patch) | |
tree | e5fe30ad2e8e1d329d0475f7f94ff5c3e4d4246d /src/imlib.c | |
parent | 71eb9b41250c907398ee8be426a9e5e450abe06c (diff) |
fix imlib2 and x11 warnings when opening a URL that returned an HTTP error
Diffstat (limited to 'src/imlib.c')
-rw-r--r-- | src/imlib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/imlib.c b/src/imlib.c index 98a91be..2425050 100644 --- a/src/imlib.c +++ b/src/imlib.c @@ -224,7 +224,8 @@ int feh_load_image(Imlib_Image * im, feh_file * file) || (!strncmp(file->filename, "ftp://", 6))) { image_source = SRC_HTTP; - tmpname = feh_http_load_image(file->filename); + if ((tmpname = feh_http_load_image(file->filename)) == NULL) + err = IMLIB_LOAD_ERROR_FILE_DOES_NOT_EXIST; } else *im = imlib_load_image_with_error_return(file->filename, &err); |