1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-28 00:21:53 +03:00

applying patch from bug #60757 this should close it Daniel

* parserInternals.c: applying patch from bug #60757 this
  should close it
Daniel
This commit is contained in:
Daniel Veillard
2001-09-21 09:47:08 +00:00
parent c0631a608f
commit b1d62871db
2 changed files with 6 additions and 1 deletions

View File

@ -2392,7 +2392,7 @@ const xmlParserNodeInfo* xmlParserFindNodeInfo(const xmlParserCtxt* ctx,
/* Find position where node should be at */
pos = xmlParserFindNodeInfoIndex(&ctx->node_seq, node);
if ( ctx->node_seq.buffer[pos].node == node )
if (pos < ctx->node_seq.length && ctx->node_seq.buffer[pos].node == node)
return &ctx->node_seq.buffer[pos];
else
return NULL;