diff options
author | Jeremy Allison <jra@samba.org> | 2006-03-13 18:56:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:25 -0500 |
commit | ed5095a4903abf41673b8d6c9fbd9a02b994a310 (patch) | |
tree | d64deea6035d0f6c5d0da71ed1bb51000d5149c9 /source3 | |
parent | 53019f5a166e524157876ee1a19b88dfab807def (diff) | |
download | samba-ed5095a4903abf41673b8d6c9fbd9a02b994a310.tar.gz samba-ed5095a4903abf41673b8d6c9fbd9a02b994a310.tar.bz2 samba-ed5095a4903abf41673b8d6c9fbd9a02b994a310.zip |
r14336: Try and quieten coverity #53 and #54. Make it obvious
we're using -1 as a special size_t case by casting.
Jeremy.
(This used to be commit 415530bd082bf351f5e4c1fd32408f123ed77f85)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/msdfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/msdfs.c b/source3/smbd/msdfs.c index 955197a425..257a6105c5 100644 --- a/source3/smbd/msdfs.c +++ b/source3/smbd/msdfs.c @@ -680,7 +680,7 @@ static int setup_ver2_dfs_referral(char *pathname, char **ppdata, 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 @@ static int setup_ver3_dfs_referral(char *pathname, char **ppdata, 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); |