svn commit: samba r5908 - in trunk/source/lib: .

jra at samba.org jra at samba.org
Sat Mar 19 20:49:20 GMT 2005


Author: jra
Date: 2005-03-19 20:49:17 +0000 (Sat, 19 Mar 2005)
New Revision: 5908

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

Log:
Fix compile warning noticed by Jason Mader <jason at ncac.gwu.edu>.
Bug #2483.
Jeremy.

Modified:
   trunk/source/lib/data_blob.c


Changeset:
Modified: trunk/source/lib/data_blob.c
===================================================================
--- trunk/source/lib/data_blob.c	2005-03-19 20:49:09 UTC (rev 5907)
+++ trunk/source/lib/data_blob.c	2005-03-19 20:49:17 UTC (rev 5908)
@@ -47,7 +47,7 @@
 	if (p) {
 		ret.data = smb_xmemdup(p, length);
 	} else {
-		ret.data = SMB_XMALLOC_ARRAY(char, length);
+		ret.data = SMB_XMALLOC_ARRAY(unsigned char, length);
 	}
 	ret.length = length;
 	ret.free = free_data_blob;



More information about the samba-cvs mailing list