]> spindle.queued.net Git - midori/commitdiff
Extra byte for NULL in addons_convert_to_simple_regexp
authorChristian Dywan <christian@twotoasts.de>
Mon, 28 Nov 2011 22:31:52 +0000 (23:31 +0100)
committerChristian Dywan <christian@twotoasts.de>
Mon, 28 Nov 2011 22:32:28 +0000 (23:32 +0100)
extensions/addons.c

index f0dc8c95b990e295cf121addf6725f6e7c31e02e..b98899b9881ff4711504b224d0d69a3b111dca97 100644 (file)
@@ -1365,7 +1365,7 @@ addons_convert_to_simple_regexp (const gchar* pattern)
     gchar c;
 
     len = strlen (pattern);
-    dest = g_malloc0 (len * 2 + 1);
+    dest = g_malloc0 (len * 2 + 2);
     dest[0] = '^';
     pos = 1;