svn commit: samba r14212 - in branches/SAMBA_3_0/source/libmsrpc: .

jra at samba.org jra at samba.org
Sat Mar 11 20:23:50 GMT 2006


Author: jra
Date: 2006-03-11 20:23:50 +0000 (Sat, 11 Mar 2006)
New Revision: 14212

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14212

Log:
Definately fixes a coverity issue but I've lost track
of the coverity id.... Oh well - definately needs a fix.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/libmsrpc/cac_lsarpc.c


Changeset:
Modified: branches/SAMBA_3_0/source/libmsrpc/cac_lsarpc.c
===================================================================
--- branches/SAMBA_3_0/source/libmsrpc/cac_lsarpc.c	2006-03-11 19:06:47 UTC (rev 14211)
+++ branches/SAMBA_3_0/source/libmsrpc/cac_lsarpc.c	2006-03-11 20:23:50 UTC (rev 14212)
@@ -481,7 +481,7 @@
       return CAC_FAILURE;
    }
 
-   if(!op->in.pol) {
+   if(!op || !op->in.pol) {
       hnd->status = NT_STATUS_INVALID_PARAMETER;
       return CAC_FAILURE;
    }



More information about the samba-cvs mailing list