diff options
author | Boris Egorov <[email protected]> | 2014-12-23 14:07:36 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-12-23 14:07:36 +0100 |
commit | 5dfc2ba03c042c6285e53daec8645035ed13a546 (patch) | |
tree | 46c2f1d2d8e7ee26ff985eb33a88202883dd1f6c /src/eom-thumb-view.c | |
parent | 03acf1bd1e923ff4178b7181d996b6aeaa44caca (diff) | |
download | eom-5dfc2ba03c042c6285e53daec8645035ed13a546.tar.bz2 eom-5dfc2ba03c042c6285e53daec8645035ed13a546.tar.xz |
eom-thumb-view: Fix a memory leak
Diffstat (limited to 'src/eom-thumb-view.c')
-rw-r--r-- | src/eom-thumb-view.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/eom-thumb-view.c b/src/eom-thumb-view.c index 4874f53..8394633 100644 --- a/src/eom-thumb-view.c +++ b/src/eom-thumb-view.c @@ -467,6 +467,7 @@ thumbview_get_tooltip_string (EomImage *image) 0, NULL, NULL); g_object_unref (file); if (file_info == NULL) { + g_free (bytes); return NULL; } |