mirror of
https://github.com/samba-team/samba.git
synced 2025-02-03 13:47:25 +03:00
werror: replace WERR_NOMEM with WERR_NOT_ENOUGH_MEMORY in libcli/drsuapi/repl_decrypt.c
Guenther Signed-off-by: Guenther Deschner <gd@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
6cfe5c9249
commit
29b9b1c04d
@ -255,7 +255,7 @@ static WERROR drsuapi_encrypt_attribute_value(TALLOC_CTX *mem_ctx,
|
||||
enc_buffer = data_blob_talloc(mem_ctx, NULL, in->length+20);
|
||||
if (!enc_buffer.data) {
|
||||
talloc_free(rid_crypt_out.data);
|
||||
return WERR_NOMEM;
|
||||
return WERR_NOT_ENOUGH_MEMORY;
|
||||
};
|
||||
|
||||
confounder = data_blob_const(enc_buffer.data, 16);
|
||||
|
Loading…
x
Reference in New Issue
Block a user