mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
r17862: Fix possible NULL deref (like rev 17861) found by the
Stanford group.
Jeremy.
(This used to be commit cfd39c2804
)
This commit is contained in:
parent
16c8f09a1f
commit
fb0ed72caa
@ -2284,7 +2284,9 @@ SMB_BIG_UINT STR_TO_SMB_BIG_UINT(const char *nptr, const char **entptr)
|
||||
const char *p = nptr;
|
||||
|
||||
if (!p) {
|
||||
*entptr = p;
|
||||
if (entptr) {
|
||||
*entptr = p;
|
||||
}
|
||||
return val;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user