[Xfce4-commits] <midori:master> Move slot and dial_id out of the loop for JSON import

Christian Dywan noreply at xfce.org
Sun Apr 3 23:36:02 CEST 2011


Updating branch refs/heads/master
         to 1e5e1710ee4da64bfa3565b0a50135918d250351 (commit)
       from b8eb9c50f773cac68adc7db514b89b0960df2f91 (commit)

commit 1e5e1710ee4da64bfa3565b0a50135918d250351
Author: Paweł Forysiuk <tuxator at o2.pl>
Date:   Sun Apr 3 23:24:53 2011 +0200

    Move slot and dial_id out of the loop for JSON import

 midori/main.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/midori/main.c b/midori/main.c
index b108e53..f17ff7d 100644
--- a/midori/main.c
+++ b/midori/main.c
@@ -1478,6 +1478,8 @@ speeddial_new_from_file (const gchar* config,
     guint columns = 3;
     guint slot_count = 0;
     guint rows;
+    gchar* slot = NULL;
+    gchar* dial_id = NULL;
     gchar* json_content;
     gchar** parts;
 
@@ -1494,9 +1496,6 @@ speeddial_new_from_file (const gchar* config,
     {
         gchar* key;
         gchar* val;
-        gchar* slot = NULL;
-        gchar* dial_id = NULL;
-        gchar* uri;
         gchar** values = g_strsplit (parts[i], "\"", -1);
 
         if (*values[1])
@@ -1526,9 +1525,8 @@ speeddial_new_from_file (const gchar* config,
             }
             else if (g_str_equal (key, "href") && (*val && strncmp (val, "#", 1)))
             {
-                uri = g_strdup (val);
                 g_key_file_set_value (key_file, dial_id, "name", slot);
-                g_key_file_set_value (key_file, dial_id, "uri", uri);
+                g_key_file_set_value (key_file, dial_id, "uri", val);
             }
             else if (g_str_equal (key, "img") && *val)
             {
@@ -1597,6 +1595,8 @@ speeddial_new_from_file (const gchar* config,
     sokoke_key_file_save_to_file (key_file, config_file, NULL);
 
     g_strfreev (parts);
+    g_free (dial_id);
+    g_free (slot);
     g_free (config_file);
     g_free (json_content);
     return key_file;



More information about the Xfce4-commits mailing list