]> saetta.ns0.it Git - libgfeed/commitdiff
Use the right function to set xml namespace in Atom. master
authorAndrea Zagli <azagli@libero.it>
Sun, 16 Dec 2012 10:37:27 +0000 (11:37 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 16 Dec 2012 10:37:27 +0000 (11:37 +0100)
src/atom.c
src/atomcommon.c

index f72aea306b38126ce32588b2b64f795069d787f5..d491795a73f40a6a43eaea8822090fdf6055df37 100644 (file)
@@ -265,11 +265,11 @@ xmlDoc
        xmlDoc *xdoc = xmlNewDoc ((const xmlChar *)"1.0");
        xmlNode *xroot = xmlNewNode (NULL, (const xmlChar *)"feed");
 
-  /* adding root element */
-  if (xroot == NULL) return NULL;
+       /* adding root element */
+       if (xroot == NULL) return NULL;
 
-  xmlSetProp (xroot, (const xmlChar *)"xmlns", (const xmlChar *)"http://www.w3.org/2005/Atom");
-  xmlDocSetRootElement (xdoc, xroot);
+       xmlNewNs (xroot, (const xmlChar *)"http://www.w3.org/2005/Atom", NULL);
+       xmlDocSetRootElement (xdoc, xroot);
 
        lst = g_list_first (priv->author);
        while (lst != NULL)
index d906ba9e634805d5f1ffa0321835ae8a2c8c6c63..243a947ef1293337562301f14038d30c5fd0892d 100644 (file)
@@ -123,14 +123,12 @@ atom_common_get_xml (AtomCommon *atom_common, xmlNode *xnode)
                {
                        xmlSetProp (xnode, (const xmlChar *)"xml:base", prop);
                }
-       g_free (prop);
 
        prop = (xmlChar *)g_strstrip (priv->lang);
        if (!xmlStrEqual (prop, (const xmlChar *)""))
                {
                        xmlSetProp (xnode, (const xmlChar *)"xml:lang", prop);
                }
-       g_free (prop);
 }
 
 static void