[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-1292-ga716606

Volker Lendecke vlendec at samba.org
Tue Apr 28 03:30:22 GMT 2009


The branch, master has been updated
       via  a716606c2745f4b1d3adf220707a8d5dbd86acbb (commit)
      from  d9805878e242d0d279f340b4a1fd084c77f240b1 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit a716606c2745f4b1d3adf220707a8d5dbd86acbb
Author: Volker Lendecke <vl at samba.org>
Date:   Thu Apr 23 18:05:51 2009 +0200

    Fix a type-punned warning

-----------------------------------------------------------------------

Summary of changes:
 libgpo/gpo_ini.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/libgpo/gpo_ini.c b/libgpo/gpo_ini.c
index 674c741..7df56a8 100644
--- a/libgpo/gpo_ini.c
+++ b/libgpo/gpo_ini.c
@@ -88,7 +88,7 @@ static NTSTATUS convert_file_from_ucs2(TALLOC_CTX *mem_ctx,
 	}
 
 	if (!convert_string_talloc(mem_ctx, CH_UTF16LE, CH_UNIX, data_in, n,
-				   (void **)&data_out, &converted_size, false))
+				   (void *)&data_out, &converted_size, false))
 	{
 		status = NT_STATUS_INVALID_BUFFER_SIZE;
 		goto out;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list