mirror of
https://github.com/samba-team/samba.git
synced 2025-03-01 04:58:35 +03:00
s3-spoolss: Use tmp_ctx in winreg_get_printer_dataex_internal.
This commit is contained in:
parent
7aef2f6308
commit
e6e80ea137
@ -327,17 +327,30 @@ WERROR winreg_get_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_get_printer_dataex(mem_ctx, b,
|
||||
printer,
|
||||
key,
|
||||
value,
|
||||
type,
|
||||
data,
|
||||
data_size);
|
||||
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_dataex(mem_ctx,
|
||||
b,
|
||||
printer,
|
||||
key,
|
||||
value,
|
||||
type,
|
||||
data,
|
||||
data_size);
|
||||
|
||||
talloc_free(tmp_ctx);
|
||||
return result;
|
||||
}
|
||||
|
||||
WERROR winreg_delete_printer_dataex_internal(TALLOC_CTX *mem_ctx,
|
||||
|
Loading…
x
Reference in New Issue
Block a user