1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-12 12:23:50 +03:00

r17862: Fix possible NULL deref (like rev 17861) found by the

Stanford group.
Jeremy.
This commit is contained in:
Jeremy Allison
2006-08-28 01:48:04 +00:00
committed by Gerald (Jerry) Carter
parent 1cb379315a
commit cfd39c2804

View File

@@ -2284,7 +2284,9 @@ SMB_BIG_UINT STR_TO_SMB_BIG_UINT(const char *nptr, const char **entptr)
const char *p = nptr; const char *p = nptr;
if (!p) { if (!p) {
*entptr = p; if (entptr) {
*entptr = p;
}
return val; return val;
} }