The branch, v3-3-test has been updated
       via  9c80ce9b4f3d2b130cf58610f36ed46a7e17baf4 (commit)
      from  e273c07e94ee607bbf05b6fa66cf3cea13fe4502 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test


- Log -----------------------------------------------------------------
commit 9c80ce9b4f3d2b130cf58610f36ed46a7e17baf4
Author: Volker Lendecke <[email protected]>
Date:   Mon Jan 5 15:47:19 2009 +0100

    Fix bug 6014 -- mget shouldn't segfault without arguments
    
    Thanks to [email protected] for the bug report
    
    Volker

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

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


Changeset truncated at 500 lines:

diff --git a/source/client/client.c b/source/client/client.c
index 5e3b1a9..4d7085e 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -1332,6 +1332,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

Reply via email to