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:
@ -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;
|
||||
|
Reference in New Issue
Block a user