From: Günther Deschner Date: Wed, 20 Aug 2008 18:24:45 +0000 (+0200) Subject: fix another build warning. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=43693ce6c678b961fa516bbf502af92f87cd5346;p=thirdparty%2Fsamba.git fix another build warning. Guenther --- diff --git a/source/rpc_client/cli_pipe.c b/source/rpc_client/cli_pipe.c index ad2f512647d..41dde87c429 100644 --- a/source/rpc_client/cli_pipe.c +++ b/source/rpc_client/cli_pipe.c @@ -979,8 +979,8 @@ static NTSTATUS rpc_api_pipe(struct rpc_pipe_client *cli, while(1) { RPC_HDR rhdr; - char *ret_data; - uint32 ret_data_len; + char *ret_data = NULL; + uint32 ret_data_len = 0; /* Ensure we have enough data for a pdu. */ ret = cli_pipe_get_current_pdu(cli, &rhdr, ¤t_pdu);