[SCM] Samba Shared Repository - branch master updated

Matthias Dieter Wallnöfer mdw at samba.org
Fri May 28 02:41:06 MDT 2010


The branch, master has been updated
       via  76f804a... s4:client/client.c - we don't need "&ctx" for talloc calls
      from  ce99f9e... s4:web_server/wsgi.c - fix "asprintf" call

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


- Log -----------------------------------------------------------------
commit 76f804af10e490f4037f556d1ac600fd905e0236
Author: Matthias Dieter Wallnöfer <mdw at samba.org>
Date:   Fri May 28 10:39:54 2010 +0200

    s4:client/client.c - we don't need "&ctx" for talloc calls
    
    Simply use "ctx".

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

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


Changeset truncated at 500 lines:

diff --git a/source4/client/client.c b/source4/client/client.c
index 2a2c8ac..ee499d2 100644
--- a/source4/client/client.c
+++ b/source4/client/client.c
@@ -872,7 +872,7 @@ static void do_mget(struct smbclient_context *ctx, struct clilist_file_info *fin
 	talloc_free(quest);
 
 	if (!(finfo->attrib & FILE_ATTRIBUTE_DIRECTORY)) {
-		rname = talloc_asprintf(&ctx, "%s%s",ctx->remote_cur_dir,
+		rname = talloc_asprintf(ctx, "%s%s",ctx->remote_cur_dir,
 					finfo->name);
 		do_get(ctx, rname, finfo->name, false);
 		talloc_free(rname);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list