Author: jra
Date: 2006-03-13 18:56:33 +0000 (Mon, 13 Mar 2006)
New Revision: 14337

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

Log:
Try and quieten coverity #53 and #54. Make it obvious
we're using -1 as a special size_t case by casting.
Jeremy.

Modified:
   trunk/source/smbd/msdfs.c


Changeset:
Modified: trunk/source/smbd/msdfs.c
===================================================================
--- trunk/source/smbd/msdfs.c   2006-03-13 18:56:26 UTC (rev 14336)
+++ trunk/source/smbd/msdfs.c   2006-03-13 18:56:33 UTC (rev 14337)
@@ -680,7 +680,7 @@
                SSVAL(pdata,offset+18,uni_reqpathoffset2-offset);
                /* copy referred path into current offset */
                unilen = rpcstr_push(pdata+uni_curroffset, ref->alternate_path,
-                                    -1, STR_UNICODE);
+                                    (size_t)-1, STR_UNICODE);
 
                SSVAL(pdata,offset+20,uni_curroffset-offset);
 
@@ -709,7 +709,7 @@
        
        DEBUG(10,("setting up version3 referral\n"));
 
-       reqpathlen = rpcstr_push(uni_reqpath, pathname, -1, STR_TERMINATE);
+       reqpathlen = rpcstr_push(uni_reqpath, pathname, (size_t)-1, 
STR_TERMINATE);
        
        if (DEBUGLVL(10)) {
            dump_data(0, (char *) uni_reqpath,reqpathlen);

Reply via email to