1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

s3-spoolss: Use tmp_ctx in winreg_delete_printer_dataex_internal.

This commit is contained in:
Andreas Schneider 2011-07-25 21:13:46 +02:00
parent e6e80ea137
commit 106829545c

View File

@ -362,14 +362,27 @@ WERROR winreg_delete_printer_dataex_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_delete_printer_dataex(mem_ctx, b,
printer,
key,
value);
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_delete_printer_dataex(mem_ctx,
b,
printer,
key,
value);
talloc_free(tmp_ctx);
return result;
}
WERROR winreg_get_driver_internal(TALLOC_CTX *mem_ctx,