From b2996e57831bdde76b61eae78ca97caf9c7dafdc Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 25 Jul 2008 14:04:02 +0000 Subject: [PATCH] (svg_load_image): Fix last change. --- src/image.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/image.c b/src/image.c index 58ea767dc9a..ffc075332f9 100644 --- a/src/image.c +++ b/src/image.c @@ -9021,12 +9021,13 @@ svg_load_image (f, img, contents, size) fn_rsvg_handle_close (rsvg_handle, &error); if (error) goto rsvg_error; + /* We can now get a valid pixel buffer from the svg file, if all went ok. */ pixbuf = fn_rsvg_handle_get_pixbuf (rsvg_handle); + fn_rsvg_handle_free (rsvg_handle); if (!pixbuf) goto rsvg_error; - fn_rsvg_handle_free (rsvg_handle); /* Extract some meta data from the svg handle. */ width = fn_gdk_pixbuf_get_width (pixbuf); -- 2.39.2