]> Dogcows Code - chaz/openbox/commitdiff
Properly escape strings before writing XML.
authorNico Golde <nion@debian.org>
Sun, 13 Jul 2008 13:29:50 +0000 (15:29 +0200)
committerMikael Magnusson <mikachu@gmail.com>
Sun, 13 Jul 2008 13:29:50 +0000 (15:29 +0200)
openbox/session.c

index 77dc5de0883d044dfb571dfef45b558e01c390ef..811592ec90cd5fbbfb68531a36ebc5a88e4bf18b 100644 (file)
@@ -486,10 +486,14 @@ static gboolean session_save_to_file(const ObSMSaveData *savedata)
 
         if (screen_desktop_names) {
             gint i;
+            gchar *t;
 
             fprintf(f, "<desktopnames>\n");
-            for (i = 0; screen_desktop_names[i]; ++i)
-                fprintf(f, "  <name>%s</name>\n", screen_desktop_names[i]);
+            for (i = 0; screen_desktop_names[i]; ++i){
+                t = g_markup_escape_text(screen_desktop_names[i], -1);
+                fprintf(f, "  <name>%s</name>\n", t);
+                g_free(t);
+            }
             fprintf(f, "</desktopnames>\n");
         }
 
@@ -544,8 +548,11 @@ static gboolean session_save_to_file(const ObSMSaveData *savedata)
 
             if (c->sm_client_id)
                 fprintf(f, "<window id=\"%s\">\n", c->sm_client_id);
-            else
-                fprintf(f, "<window command=\"%s\">\n", c->wm_command);
+            else {
+                t = g_markup_escape_text(c->wm_command, -1);
+                fprintf(f, "<window command=\"%s\">\n", t);
+                g_free(t);
+            }
 
             t = g_markup_escape_text(c->name, -1);
             fprintf(f, "\t<name>%s</name>\n", t);
This page took 0.026566 seconds and 4 git commands to generate.