From a787e2d12484545633a540e6aa02e84f6fa456fa Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 5 Mar 2006 17:39:21 +0000 Subject: r13841: Fix an uninitialized variable warning. Jerry, this just fixes the warning. This routine does not seem to cope well with !UNMARSHALLING. You might want to look... Volker (This used to be commit 2c0c40dfb5da9e901e099295f43032a745e71253) --- source3/rpc_parse/parse_spoolss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpc_parse') diff --git a/source3/rpc_parse/parse_spoolss.c b/source3/rpc_parse/parse_spoolss.c index 576d75f88c..6f1ace8214 100644 --- a/source3/rpc_parse/parse_spoolss.c +++ b/source3/rpc_parse/parse_spoolss.c @@ -7495,7 +7495,7 @@ BOOL make_monitorui_buf( RPC_BUFFER *buf, const char *dllname ) static BOOL smb_io_port_data_1( const char *desc, RPC_BUFFER *buf, int depth, SPOOL_PORT_DATA_1 *p1 ) { prs_struct *ps = &buf->prs; - uint8 *fodder; + uint8 *fodder = NULL; prs_debug(ps, depth, desc, "smb_io_port_data_1"); depth++; -- cgit