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

r14002: Quick fix for Coverity CID #12.

Jeremy
This commit is contained in:
Jeremy Allison 2006-03-08 01:04:17 +00:00 committed by Gerald (Jerry) Carter
parent b9de6c9269
commit 7c6e274cd5

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) {