summaryrefslogtreecommitdiff
path: root/source3/rpc_server/spoolss
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2011-07-25 21:07:21 +0200
committerAndreas Schneider <asn@samba.org>2011-07-27 08:49:59 +0200
commitf9359a2dc9cc94bf52d568825a79995732299759 (patch)
treea8b198f26c47e476e314549abf3380261edd1655 /source3/rpc_server/spoolss
parent20afdeec3c685fb7e03a902bba6141ae69678536 (diff)
downloadsamba-f9359a2dc9cc94bf52d568825a79995732299759.tar.gz
samba-f9359a2dc9cc94bf52d568825a79995732299759.tar.bz2
samba-f9359a2dc9cc94bf52d568825a79995732299759.zip
s3-spoolss: Use tmp_ctx in winreg_get_printer_internal.
Diffstat (limited to 'source3/rpc_server/spoolss')
-rw-r--r--source3/rpc_server/spoolss/srv_spoolss_util.c22
1 files changed, 17 insertions, 5 deletions
diff --git a/source3/rpc_server/spoolss/srv_spoolss_util.c b/source3/rpc_server/spoolss/srv_spoolss_util.c
index 52ba183d5e..40bafcbca2 100644
--- a/source3/rpc_server/spoolss/srv_spoolss_util.c
+++ b/source3/rpc_server/spoolss/srv_spoolss_util.c
@@ -157,14 +157,26 @@ WERROR winreg_get_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;
+ }
- return winreg_get_printer(mem_ctx, b,
- printer,
- pinfo2);
+ 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_get_printer(mem_ctx,
+ b,
+ printer,
+ pinfo2);
+
+ talloc_free(tmp_ctx);
+ return result;
}
WERROR winreg_create_printer_internal(TALLOC_CTX *mem_ctx,