diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2017-01-11 04:49:18 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2017-01-11 04:49:18 +0000 |
commit | 09b97c074fd0416f4c3d3d895ac78cf6e6f78413 (patch) | |
tree | 5844897b72652df5e8d6922139124ba224c2c98b /converter/other/svgtopam.c | |
parent | 9df60b4c472359d6d1a92fd62dd74feb002f14fc (diff) | |
download | netpbm-mirror-09b97c074fd0416f4c3d3d895ac78cf6e6f78413.tar.gz netpbm-mirror-09b97c074fd0416f4c3d3d895ac78cf6e6f78413.tar.xz netpbm-mirror-09b97c074fd0416f4c3d3d895ac78cf6e6f78413.zip |
Release 10.77.01
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@2878 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/svgtopam.c')
-rw-r--r-- | converter/other/svgtopam.c | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/converter/other/svgtopam.c b/converter/other/svgtopam.c index a10f51da..09e3a24e 100644 --- a/converter/other/svgtopam.c +++ b/converter/other/svgtopam.c @@ -103,16 +103,23 @@ parseCommandLine(int argc, /*============================================================================ Wrappers for libxml2 routines. - The difference is that these use conventional C data types and have - shorter names. + The difference is that these use conventional C data types, have shorter + names, and abort the program instead of returning a special value when they + fail. =============================================================================*/ static const char * getAttribute(xmlTextReaderPtr const xmlReaderP, const char * const attributeName) { - return (const char *) + const char * const rc = (const char *) xmlTextReaderGetAttribute(xmlReaderP, (const xmlChar *)attributeName); + + if (rc == NULL) + pm_error("xmlTextReaderGetAttribute(\"%.256s\") failed. ", + attributeName); + + return rc; } @@ -120,7 +127,13 @@ getAttribute(xmlTextReaderPtr const xmlReaderP, static const char * currentNodeName(xmlTextReaderPtr const xmlReaderP) { - return (const char *)xmlTextReaderConstName(xmlReaderP); + const char * const rc = (const char *) + xmlTextReaderConstName(xmlReaderP); + + if (rc == NULL) + pm_error("xmlTextReaderConstName() failed. "); + + return rc; } |