summaryrefslogtreecommitdiff
path: root/src/image.c
diff options
context:
space:
mode:
authordickmao <dick.r.chiang@gmail.com>2022-09-13 13:57:44 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-09-13 13:57:44 +0200
commitdd22694421249ef071488c02192b724da1aa03cb (patch)
tree5bd939a106050c5671a1199fc7d41c22874e4810 /src/image.c
parent89199f16aef2b1a2e79f22dddd7322f9f4fdd1fc (diff)
downloademacs-dd22694421249ef071488c02192b724da1aa03cb.tar.gz
emacs-dd22694421249ef071488c02192b724da1aa03cb.tar.bz2
emacs-dd22694421249ef071488c02192b724da1aa03cb.zip
Avoid double svg error reporting and segfaults
* src/image.c (svg_load_image): Use g_error_free directly instead of the helder g_clear_error (since we're only calling it with non-nil values). (svg_load_image): Avoid segfault and double reporting errors. * test/manual/image-tests.el (image-tests-load-image/svg-too-big) (image-tests-load-image/svg-invalid): Test it (bug#57755).
Diffstat (limited to 'src/image.c')
-rw-r--r--src/image.c27
1 files changed, 18 insertions, 9 deletions
diff --git a/src/image.c b/src/image.c
index 549fe30ef7c..2e04685e7f9 100644
--- a/src/image.c
+++ b/src/image.c
@@ -10907,7 +10907,7 @@ DEF_DLL_FN (int, gdk_pixbuf_get_bits_per_sample, (const GdkPixbuf *));
DEF_DLL_FN (void, g_type_init, (void));
# endif
DEF_DLL_FN (void, g_object_unref, (gpointer));
-DEF_DLL_FN (void, g_clear_error, (GError **));
+DEF_DLL_FN (void, g_error_free, (GError *));
static bool
init_svg_functions (void)
@@ -10967,7 +10967,7 @@ init_svg_functions (void)
LOAD_DLL_FN (gobject, g_type_init);
# endif
LOAD_DLL_FN (gobject, g_object_unref);
- LOAD_DLL_FN (glib, g_clear_error);
+ LOAD_DLL_FN (glib, g_error_free);
return 1;
}
@@ -10983,7 +10983,7 @@ init_svg_functions (void)
# undef gdk_pixbuf_get_pixels
# undef gdk_pixbuf_get_rowstride
# undef gdk_pixbuf_get_width
-# undef g_clear_error
+# undef g_error_free
# undef g_object_unref
# undef g_type_init
# if LIBRSVG_CHECK_VERSION (2, 52, 1)
@@ -11019,7 +11019,7 @@ init_svg_functions (void)
# define gdk_pixbuf_get_pixels fn_gdk_pixbuf_get_pixels
# define gdk_pixbuf_get_rowstride fn_gdk_pixbuf_get_rowstride
# define gdk_pixbuf_get_width fn_gdk_pixbuf_get_width
-# define g_clear_error fn_g_clear_error
+# define g_error_free fn_g_error_free
# define g_object_unref fn_g_object_unref
# if ! GLIB_CHECK_VERSION (2, 36, 0)
# define g_type_init fn_g_type_init
@@ -11353,7 +11353,7 @@ svg_load_image (struct frame *f, struct image *img, char *contents,
if (! check_image_size (f, width, height))
{
image_size_error ();
- goto rsvg_error;
+ goto done_error;
}
/* We are now done with the unmodified data. */
@@ -11536,9 +11536,21 @@ svg_load_image (struct frame *f, struct image *img, char *contents,
image_put_x_image (f, img, ximg, 0);
}
+ eassume (err == NULL);
return true;
rsvg_error:
+ if (err == NULL)
+ image_error ("Error parsing SVG image");
+ else
+ {
+ image_error ("Error parsing SVG image: %s",
+ call2 (Qstring_trim_right, build_string (err->message),
+ Qnil));
+ g_error_free (err);
+ }
+
+ done_error:
if (rsvg_handle)
g_object_unref (rsvg_handle);
if (wrapped_contents)
@@ -11547,10 +11559,6 @@ svg_load_image (struct frame *f, struct image *img, char *contents,
if (css && !STRINGP (lcss))
xfree (css);
#endif
- image_error ("Error parsing SVG image: %s",
- /* The -1 removes an extra newline. */
- make_string (err->message, strlen (err->message) - 1));
- g_clear_error (&err);
return false;
}
@@ -12265,4 +12273,5 @@ The options are:
imagemagick_render_type = 0;
#endif
+ DEFSYM (Qstring_trim_right, "string-trim-right");
}