mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Avoid Possible null pointer dereference in memory debug mode
Fix a use before check on pointer For https://bugzilla.gnome.org/show_bug.cgi?id=729849
This commit is contained in:
parent
41b0d1c4e5
commit
7966a761b7
@ -583,13 +583,15 @@ xmlMemBlocks(void) {
|
||||
static void
|
||||
xmlMemContentShow(FILE *fp, MEMHDR *p)
|
||||
{
|
||||
int i,j,k,len = p->mh_size;
|
||||
const char *buf = (const char *) HDR_2_CLIENT(p);
|
||||
int i,j,k,len;
|
||||
const char *buf;
|
||||
|
||||
if (p == NULL) {
|
||||
fprintf(fp, " NULL");
|
||||
return;
|
||||
}
|
||||
len = p->mh_size;
|
||||
buf = (const char *) HDR_2_CLIENT(p);
|
||||
|
||||
for (i = 0;i < len;i++) {
|
||||
if (buf[i] == 0) break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user