mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
save: Add range check for level in xmlNodeDump
This commit is contained in:
parent
3061b56a1e
commit
d2f7ca5305
10
xmlsave.c
10
xmlsave.c
@ -9,6 +9,7 @@
|
||||
#define IN_LIBXML
|
||||
#include "libxml.h"
|
||||
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <libxml/xmlmemory.h>
|
||||
@ -2428,6 +2429,10 @@ xmlNodeDump(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, int level,
|
||||
|
||||
if ((buf == NULL) || (cur == NULL))
|
||||
return(-1);
|
||||
if (level < 0)
|
||||
level = 0;
|
||||
else if (level > 100)
|
||||
level = 100;
|
||||
buffer = xmlBufFromBuffer(buf);
|
||||
if (buffer == NULL)
|
||||
return(-1);
|
||||
@ -2560,6 +2565,11 @@ xmlNodeDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur,
|
||||
|
||||
if ((buf == NULL) || (cur == NULL)) return;
|
||||
|
||||
if (level < 0)
|
||||
level = 0;
|
||||
else if (level > 100)
|
||||
level = 100;
|
||||
|
||||
if (encoding == NULL)
|
||||
encoding = "UTF-8";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user