Merge branch '2.5'

This commit is contained in:
Petri Lehtinen
2013-11-14 08:49:24 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1538,7 +1538,7 @@ JSON structures by zeroing all memory when freed::
ptr -= 8;
size = *((size_t *)ptr);
guaranteed_memset(ptr, 0, size);
guaranteed_memset(ptr, 0, size + 8);
free(ptr);
}