s4-client: Check return codes in do_connect().
authorAndreas Schneider <asn@samba.org>
Thu, 13 Dec 2012 13:11:29 +0000 (14:11 +0100)
committerGünther Deschner <gd@samba.org>
Fri, 21 Dec 2012 12:55:59 +0000 (13:55 +0100)
Found by Coverity.

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Günther Deschner <gd@samba.org>
source4/client/client.c

index 1cd0e5d0635feec8ec9b16eb26fcaa7e35b7ad0b..9985338477ad0a78452f25f66bea5a5b39887247 100644 (file)
@@ -3133,14 +3133,30 @@ static bool do_connect(struct smbclient_context *ctx,
 
        if (strncmp(specified_share, "\\\\", 2) == 0 ||
            strncmp(specified_share, "//", 2) == 0) {
-               smbcli_parse_unc(specified_share, ctx, &server, &share);
+               bool ok;
+
+               ok = smbcli_parse_unc(specified_share, ctx, &server, &share);
+               if (!ok) {
+                       d_printf("Failed to parse UNC\n");
+                       talloc_free(ctx);
+                       return false;
+               }
        } else {
                share = talloc_strdup(ctx, specified_share);
                server = talloc_strdup(ctx, specified_server);
+               if (share == NULL || server == NULL) {
+                       d_printf("Failed to allocate memory for server and share\n");
+                       talloc_free(ctx);
+                       return false;
+               }
        }
 
        ctx->remote_cur_dir = talloc_strdup(ctx, "\\");
-       
+       if (ctx->remote_cur_dir == NULL) {
+               talloc_free(ctx);
+               return false;
+       }
+
        status = smbcli_full_connection(ctx, &ctx->cli, server, ports,
                                        share, NULL, 
                                        socket_options,