error.c: *input->cur == 0 does not mean no error

Complements: ce0b0d0d81fdbb5
This commit is contained in:
Pavel Raiskup 2015-12-01 13:24:44 +01:00 committed by Daniel Veillard
parent 49bbfdb6c9
commit c4184ba217

View File

@ -177,8 +177,8 @@ xmlParserPrintFileContextInternal(xmlParserInputPtr input ,
xmlChar content[81]; /* space for 80 chars + line terminator */
xmlChar *ctnt;
if ((input == NULL) || (input->cur == NULL) ||
(*input->cur == 0)) return;
if ((input == NULL) || (input->cur == NULL))
return;
cur = input->cur;
base = input->base;