|
|
Author: jra
Date: 2006-02-13 13:36:22 +0000 (Mon, 13 Feb 2006)
New Revision: 13491
WebSVN:
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13491
Log:
Fix bug # 3498 from jason@xxxxxxxxxxxxx Unsigned comparison
with < 0.
Jeremy.
Modified:
branches/SAMBA_3_0/source/libmsrpc/cac_samr.c
Changeset:
Modified: branches/SAMBA_3_0/source/libmsrpc/cac_samr.c
===================================================================
--- branches/SAMBA_3_0/source/libmsrpc/cac_samr.c 2006-02-13 13:36:20 UTC
(rev 13490)
+++ branches/SAMBA_3_0/source/libmsrpc/cac_samr.c 2006-02-13 13:36:22 UTC
(rev 13491)
@@ -891,7 +891,7 @@
int result = CAC_SUCCESS;
- uint32 i = 0;
+ int i = 0;
uint32 num_mem = 0;
uint32 *rid = NULL;
@@ -1389,7 +1389,7 @@
int result = CAC_SUCCESS;
- uint32 i = 0;
+ int i = 0;
uint32 num_mem = 0;
DOM_SID *sid = NULL;
|
|