]> spindle.queued.net Git - midori/commitdiff
Don't modify const gchar* in midori_view_get_uri_extension
authorChristian Dywan <christian@twotoasts.de>
Sun, 18 Mar 2012 07:39:14 +0000 (08:39 +0100)
committerChristian Dywan <christian@twotoasts.de>
Sun, 18 Mar 2012 08:32:32 +0000 (09:32 +0100)
Fixes: https://bugs.launchpad.net/midori/+bug/957678
midori/midori-view.c

index f038ca7b90f059b7b3a4822faae2bfe47bfb7531..670a35926d9f1b155c56a31933cb0e8d2d9d8ce1 100644 (file)
@@ -5131,7 +5131,7 @@ midori_view_can_save (MidoriView* view)
     return FALSE;
 }
 
-static gchar*
+/* static */ gchar*
 midori_view_get_uri_extension (const gchar* uri)
 {
     gchar* slash;
@@ -5160,7 +5160,6 @@ midori_view_get_uri_extension (const gchar* uri)
     while (*ext_end && g_ascii_isalnum (*ext_end))
         ext_end++;
 
-    *ext_end = 0;
     return g_strdup (period);
 }