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

r14002: Quick fix for Coverity CID #12.

Jeremy
(This used to be commit 7c6e274cd578521192a0b0c4e6a4fb5dc7d722ac)
This commit is contained in:
Jeremy Allison 2006-03-08 01:04:17 +00:00 committed by Gerald (Jerry) Carter
parent 1eea156f57
commit dbbc06db65

View File

@ -73,6 +73,10 @@ BOOL sec_desc_equal(SEC_DESC *s1, SEC_DESC *s2)
goto done;
}
if (!s1 || !s2) {
return False;
}
/* Check top level stuff */
if (s1->revision != s2->revision) {