Revert "Fix bug #8453 - smbclient segfaults when dialect option -m is used for legacy...
authorStefan Metzmacher <metze@samba.org>
Thu, 22 Sep 2011 19:23:02 +0000 (21:23 +0200)
committerStefan Metzmacher <metze@samba.org>
Wed, 16 Nov 2011 14:44:05 +0000 (15:44 +0100)
This reverts commit f261ac1932ecdae925b27301aa3e907757845a85.

We now handle that in cli_state_create().

metze

Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Wed Nov 16 15:44:05 CET 2011 on sn-devel-104

source3/libsmb/cliconnect.c

index 8361715e184151b91496482e43f898fe024c38b9..a2a65b5b5c17227f29ef8d0c6d46ae1b976adff7 100644 (file)
@@ -1976,19 +1976,6 @@ NTSTATUS cli_session_setup(struct cli_state *cli,
        }
 
        if (cli_state_protocol(cli) < PROTOCOL_LANMAN1) {
-               /*
-                * Ensure cli->server_domain,
-                * cli->server_os and cli->server_type
-                * are valid pointers.
-                */
-               cli->server_domain = talloc_strdup(cli, "");
-               cli->server_os = talloc_strdup(cli, "");
-               cli->server_type = talloc_strdup(cli, "");
-               if (cli->server_domain == NULL ||
-                               cli->server_os == NULL ||
-                               cli->server_type == NULL) {
-                       return NT_STATUS_NO_MEMORY;
-               }
                return NT_STATUS_OK;
        }