From a81b2380cfcb3dc97eca08318b1b405e477ec8f1 Mon Sep 17 00:00:00 2001 From: Jihyun Cho Date: Thu, 21 Nov 2013 22:04:46 +0900 Subject: [PATCH] subparse: fix null pointer access in sami parser https://bugzilla.gnome.org/show_bug.cgi?id=712805 --- gst/subparse/samiparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/subparse/samiparse.c b/gst/subparse/samiparse.c index 973192c..517e959 100644 --- a/gst/subparse/samiparse.c +++ b/gst/subparse/samiparse.c @@ -490,7 +490,7 @@ html_context_handle_element (HtmlContext * ctxt, attrs = g_new0 (gchar *, (count + 1) * 2); - for (i = 0; i < count; i += 2) { + for (i = 0; i < count && next != NULL; i += 2) { gchar *attr_name = NULL, *attr_value = NULL; gsize length; next = string_token (next + 1, "=", &attr_name); -- 2.7.4