summaryrefslogtreecommitdiff
path: root/src/imlib.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-09-12 20:15:10 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-09-12 20:17:30 +0200
commitaf2a44237a7b5cebbf0d03375ed742809da15a59 (patch)
treed670f47e40e311efaeb8939c8c04a5eee7591300 /src/imlib.c
parent8f10b0cd7ca08b01ac6fc20f3ce7901e01ad3027 (diff)
feh_load_image: Do not add file to rm filelist unless it is cached
This fixes a "memory leak" (though strictly speaking it is none) when using feh --reload on http URLs.
Diffstat (limited to 'src/imlib.c')
-rw-r--r--src/imlib.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/imlib.c b/src/imlib.c
index 45de85c..28ae018 100644
--- a/src/imlib.c
+++ b/src/imlib.c
@@ -151,13 +151,14 @@ int feh_load_image(Imlib_Image * im, feh_file * file)
/* Http, no reload, slideshow. Let's keep this image on hand... */
free(file->filename);
file->filename = estrdup(tmpname);
+
+ if (!opt.keep_http)
+ add_file_to_rm_filelist(tmpname);
} else {
/* Don't cache the image if we're doing reload + http (webcams etc) */
if (!opt.keep_http)
unlink(tmpname);
}
- if (!opt.keep_http)
- add_file_to_rm_filelist(tmpname);
free(tmpname);
} else {
*im = imlib_load_image_with_error_return(file->filename, &err);