diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/lib/image_proxy.cc | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -2,6 +2,10 @@ * Add subtitle view. +2014-06-22 Carl Hetherington <cth@carlh.net> + + * Fix large memory leak with image sources. + 2014-06-21 Carl Hetherington <cth@carlh.net> * Move email config into the KDM email page. diff --git a/src/lib/image_proxy.cc b/src/lib/image_proxy.cc index 1eb9c169c..039b11133 100644 --- a/src/lib/image_proxy.cc +++ b/src/lib/image_proxy.cc @@ -141,6 +141,8 @@ MagickImageProxy::image () const p += _image->stride()[0]; } + delete magick_image; + LOG_TIMING ("[%1] MagickImageProxy completes decode and convert of %2 bytes", boost::this_thread::get_id(), _blob.length()); return _image; |
