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)
{
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