mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Catch malloc error and exit accordingly
As pointed privately by Bill Parker <wp02855@gmail.com>
This commit is contained in:
parent
6c9c611bee
commit
e71dce18a1
@ -3090,6 +3090,10 @@ static void usage(const char *name) {
|
||||
static void registerNode(xmlNodePtr node)
|
||||
{
|
||||
node->_private = malloc(sizeof(long));
|
||||
if (node->_private == NULL) {
|
||||
fprintf(stderr, "Out of memory in xmllint:registerNode()\n");
|
||||
exit(XMLLINT_ERR_MEM);
|
||||
}
|
||||
*(long*)node->_private = (long) 0x81726354;
|
||||
nbregister++;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user