From 21576e3f8c32878910460bf9575c200ad93d682a Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 1 Oct 2010 06:08:12 +0200 Subject: s3-net: make sure we dont crash when publishing a single printer. Guenther --- source3/utils/net_rpc_printer.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source3/utils/net_rpc_printer.c b/source3/utils/net_rpc_printer.c index 589a569879..7955666967 100644 --- a/source3/utils/net_rpc_printer.c +++ b/source3/utils/net_rpc_printer.c @@ -1093,6 +1093,11 @@ static bool get_printer_info(struct rpc_pipe_client *pipe_hnd, &hnd)) return false; + *info_p = talloc_zero(mem_ctx, union spoolss_PrinterInfo); + if (*info_p == NULL) { + return false; + } + if (!net_spoolss_getprinter(pipe_hnd, mem_ctx, &hnd, level, *info_p)) { rpccli_spoolss_ClosePrinter(pipe_hnd, mem_ctx, &hnd, NULL); return false; -- cgit