Silence -Warray-bounds warning

This is a hack, but works for now.

Fixes #389.
This commit is contained in:
Nick Wellnhofer 2022-08-26 14:43:28 +02:00
parent 1431a5976e
commit bd6326ce2a

3
tree.c
View File

@ -9604,7 +9604,8 @@ xmlDOMWrapCloneNode(xmlDOMWrapCtxtPtr ctxt,
/*
* Attributes (xmlAttr).
*/
clone = (xmlNodePtr) xmlMalloc(sizeof(xmlAttr));
/* Use xmlRealloc to avoid -Warray-bounds warning */
clone = (xmlNodePtr) xmlRealloc(NULL, sizeof(xmlAttr));
if (clone == NULL) {
xmlTreeErrMemory("xmlDOMWrapCloneNode(): allocating an attr-node");
goto internal_error;