mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Silence -Warray-bounds warning
This is a hack, but works for now. Fixes #389.
This commit is contained in:
parent
1431a5976e
commit
bd6326ce2a
3
tree.c
3
tree.c
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user