From 92f4a78ffa05160513e843164a724d212913e30e Mon Sep 17 00:00:00 2001 From: Marcelo Roberto Jimenez Date: Tue, 3 Jun 2008 19:56:15 +0000 Subject: [PATCH] In the debug code, do not consider IXML_FILE_DONE as an error. git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@405 119443c7-1b9e-41f8-b6fc-b9c35fce742c --- ixml/src/ixmlparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ixml/src/ixmlparser.c b/ixml/src/ixmlparser.c index 77ed135..a757b11 100644 --- a/ixml/src/ixmlparser.c +++ b/ixml/src/ixmlparser.c @@ -2632,7 +2632,7 @@ static int Parser_getNextNode( } ExitFunction: - if (ret != IXML_SUCCESS) { + if (ret != IXML_SUCCESS && ret != IXML_FILE_DONE) { IxmlPrintf("(%s::Parser_getNextNode): Error %d, line %d\n", __FILE__, ret, line); }