From bb22855af51d27eed1b18b33689f6dc39e09f068 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 23 Apr 2010 15:31:21 +0200 Subject: s3-lanman: fix uninitialized variable in api_RDosPrintJobDel(). Guenther --- source3/smbd/lanman.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/lanman.c b/source3/smbd/lanman.c index 71d1f4dc45..11a2e7e6b0 100644 --- a/source3/smbd/lanman.c +++ b/source3/smbd/lanman.c @@ -3136,7 +3136,7 @@ static bool api_RDosPrintJobDel(connection_struct *conn,uint16 vuid, break; default: errcode = NERR_notsupported; - break; + goto out; } status = rpccli_spoolss_SetJob(cli, mem_ctx, -- cgit