mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
s3-spoolss: Use tmp_ctx in winreg_enum_printer_key_internal.
This commit is contained in:
parent
c58c0ba0bd
commit
fea4a3111b
@ -731,13 +731,26 @@ WERROR winreg_enum_printer_key_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_enum_printer_key(mem_ctx, b,
|
||||
printer,
|
||||
key,
|
||||
pnum_subkeys,
|
||||
psubkeys);
|
||||
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_enum_printer_key(mem_ctx,
|
||||
b,
|
||||
printer,
|
||||
key,
|
||||
pnum_subkeys,
|
||||
psubkeys);
|
||||
|
||||
talloc_free(tmp_ctx);
|
||||
return result;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user