summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2011-07-25 21:08:10 +0200
committerAndreas Schneider <asn@samba.org>2011-07-27 08:49:59 +0200
commit34dc5a57f942a9e24e7b5ed7886f9f78c932ff0d (patch)
treec01f749c32974702175911a481680edbd9f2eb71
parentf9359a2dc9cc94bf52d568825a79995732299759 (diff)
downloadsamba-34dc5a57f942a9e24e7b5ed7886f9f78c932ff0d.tar.gz
samba-34dc5a57f942a9e24e7b5ed7886f9f78c932ff0d.tar.bz2
samba-34dc5a57f942a9e24e7b5ed7886f9f78c932ff0d.zip
s3-spoolss: Use tmp_ctx in winreg_create_printer_internal.
-rw-r--r--source3/rpc_server/spoolss/srv_spoolss_util.c21
1 files changed, 17 insertions, 4 deletions
diff --git a/source3/rpc_server/spoolss/srv_spoolss_util.c b/source3/rpc_server/spoolss/srv_spoolss_util.c
index 40bafcbca2..d6c3b46c76 100644
--- a/source3/rpc_server/spoolss/srv_spoolss_util.c
+++ b/source3/rpc_server/spoolss/srv_spoolss_util.c
@@ -186,12 +186,25 @@ WERROR winreg_create_printer_internal(TALLOC_CTX *mem_ctx,
{
WERROR result;
struct dcerpc_binding_handle *b;
+ TALLOC_CTX *tmp_ctx;
- result = winreg_printer_binding_handle(mem_ctx, session_info, msg_ctx, &b);
- W_ERROR_NOT_OK_RETURN(result);
+ tmp_ctx = talloc_stackframe();
+ if (tmp_ctx == NULL) {
+ return WERR_NOMEM;
+ }
+
+ result = winreg_printer_binding_handle(tmp_ctx, session_info, msg_ctx, &b);
+ if (!W_ERROR_IS_OK(result)) {
+ talloc_free(tmp_ctx);
+ return result;
+ }
+
+ result = winreg_create_printer(mem_ctx,
+ b,
+ sharename);
- return winreg_create_printer(mem_ctx, b,
- sharename);
+ talloc_free(tmp_ctx);
+ return result;
}
WERROR winreg_update_printer_internal(TALLOC_CTX *mem_ctx,