]> git.sur5r.net Git - glabels/commitdiff
2004-02-25 Jim Evins <evins@snaught.com>
authorJim Evins <evins@snaught.com>
Thu, 26 Feb 2004 03:56:43 +0000 (03:56 +0000)
committerJim Evins <evins@snaught.com>
Thu, 26 Feb 2004 03:56:43 +0000 (03:56 +0000)
* configure.in:
Changed version to 2.0pre1cvs

* libglabels/xml-template.c: (gl_xml_template_parse_templates_doc):
Removed extra xmlFreeDoc() calls upon error.  Also print the doc->URL
instead of doc->name fields when errors encountered.

git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@421 f5e0f49d-192f-0410-a22d-a8d8700d0965

glabels2/ChangeLog
glabels2/configure.in
glabels2/libglabels/xml-template.c

index b238c15490dd77f68606cec49d35d516a823682d..81cb7df812dfc3ef6bc3e88ea48cd5a85bbcd333 100644 (file)
@@ -1,3 +1,12 @@
+2004-02-25  Jim Evins  <evins@snaught.com>
+
+       * configure.in:
+               Changed version to 2.0pre1cvs
+       
+       * libglabels/xml-template.c: (gl_xml_template_parse_templates_doc):
+               Removed extra xmlFreeDoc() calls upon error.  Also print the doc->URL
+               instead of doc->name fields when errors encountered.
+
 2004-02-21  Jim Evins  <evins@snaught.com>
 
        * data/avery-iso-templates.xml:
index 5fdb6e9a958a59bf653ff6566cc07cb954aeb4a0..32279af96850e9ff3f65da99bea421a3a736c5e4 100644 (file)
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.52)
 
-AC_INIT(glabels, 1.93.3, http://sourceforge.net/tracker/?func=add&group_id=46122&atid=445116)
+AC_INIT(glabels, 2.0pre1cvs, http://sourceforge.net/tracker/?func=add&group_id=46122&atid=445116)
 AC_CONFIG_SRCDIR(src/glabels.c)
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
 
index 92d87cc01090ee660941161395a92d61455131b0..809454b85623b941c9e7608dbc07d2057dba5752 100644 (file)
@@ -129,14 +129,12 @@ gl_xml_template_parse_templates_doc (const xmlDocPtr templates_doc)
        root = xmlDocGetRootElement (templates_doc);
        if (!root || !root->name) {
                g_warning ("\"%s\" is not a glabels template file (no root node)",
-                          templates_doc->name);
-               xmlFreeDoc (templates_doc);
+                          templates_doc->URL);
                return templates;
        }
        if (!xmlStrEqual (root->name, "Glabels-templates")) {
                g_warning ("\"%s\" is not a glabels template file (wrong root node)",
-                     templates_doc->name);
-               xmlFreeDoc (templates_doc);
+                     templates_doc->URL);
                return templates;
        }