svn commit: samba r23865 - in branches: SAMBA_3_2/source/lib SAMBA_3_2_0/source/lib

vlendec at samba.org vlendec at samba.org
Fri Jul 13 11:36:56 GMT 2007


Author: vlendec
Date: 2007-07-13 11:36:55 +0000 (Fri, 13 Jul 2007)
New Revision: 23865

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

Log:
Fix a type-punned error
Modified:
   branches/SAMBA_3_2/source/lib/charcnv.c
   branches/SAMBA_3_2_0/source/lib/charcnv.c


Changeset:
Modified: branches/SAMBA_3_2/source/lib/charcnv.c
===================================================================
--- branches/SAMBA_3_2/source/lib/charcnv.c	2007-07-13 10:41:29 UTC (rev 23864)
+++ branches/SAMBA_3_2/source/lib/charcnv.c	2007-07-13 11:36:55 UTC (rev 23865)
@@ -1383,7 +1383,7 @@
 					CH_UNIX,
 					src,
 					src_len,
-					(void **)&dest,
+					(void *)&dest,
 					True);
 	if (dest_len == (size_t)-1) {
 		return 0;

Modified: branches/SAMBA_3_2_0/source/lib/charcnv.c
===================================================================
--- branches/SAMBA_3_2_0/source/lib/charcnv.c	2007-07-13 10:41:29 UTC (rev 23864)
+++ branches/SAMBA_3_2_0/source/lib/charcnv.c	2007-07-13 11:36:55 UTC (rev 23865)
@@ -1383,7 +1383,7 @@
 					CH_UNIX,
 					src,
 					src_len,
-					(void **)&dest,
+					(void *)&dest,
 					True);
 	if (dest_len == (size_t)-1) {
 		return 0;



More information about the samba-cvs mailing list