[SCM] Samba Shared Repository - branch master updated - 01891782fd247c57f0ecd79ed9adf618108c5fac

Volker Lendecke vlendec at samba.org
Mon Jan 5 14:53:49 GMT 2009


The branch, master has been updated
       via  01891782fd247c57f0ecd79ed9adf618108c5fac (commit)
      from  59612beea63f5017d0e3c0370ce1e6ad22275901 (commit)

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


- Log -----------------------------------------------------------------
commit 01891782fd247c57f0ecd79ed9adf618108c5fac
Author: Volker Lendecke <vl at samba.org>
Date:   Mon Jan 5 15:47:19 2009 +0100

    Fix bug 6014 -- mget shouldn't segfault without arguments
    
    Thanks to kevin.paulus at mtm.kuleuven.be for the bug report
    
    Volker

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

Summary of changes:
 source3/client/client.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/client/client.c b/source3/client/client.c
index 529f21a..c40c04e 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -1353,6 +1353,11 @@ static int cmd_mget(void)
 		do_list(mget_mask, attribute, do_mget, false, true);
 	}
 
+	if (mget_mask == NULL) {
+		d_printf("nothing to mget\n");
+		return 0;
+	}
+
 	if (!*mget_mask) {
 		mget_mask = talloc_asprintf(ctx,
 					"%s*",


-- 
Samba Shared Repository


More information about the samba-cvs mailing list