diff options
| -rw-r--r-- | source3/smbd/lanman.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/smbd/lanman.c b/source3/smbd/lanman.c index 8c262628c7..72d488ecab 100644 --- a/source3/smbd/lanman.c +++ b/source3/smbd/lanman.c @@ -819,6 +819,11 @@ static bool api_DosPrintQGetInfo(struct smbd_server_connection *sconn,  	ZERO_STRUCT(handle); +	if (QueueName == NULL || (strlen(QueueName) < 1)) { +		desc.errcode = W_ERROR_V(WERR_INVALID_PARAM); +		goto out; +	} +  	status = rpc_connect_spoolss_pipe(conn, &cli);  	if (!NT_STATUS_IS_OK(status)) {  		DEBUG(0,("api_DosPrintQGetInfo: could not connect to spoolss: %s\n",  | 
