avutil/buffer: remove redundant memory poisoning
Found-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
058c002932
commit
8e944891ce
@ -71,9 +71,6 @@ AVBufferRef *av_buffer_alloc(int size)
|
|||||||
if (!data)
|
if (!data)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if(CONFIG_MEMORY_POISONING)
|
|
||||||
memset(data, 0x2a, size);
|
|
||||||
|
|
||||||
ret = av_buffer_create(data, size, av_buffer_default_free, NULL, 0);
|
ret = av_buffer_create(data, size, av_buffer_default_free, NULL, 0);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
av_freep(&data);
|
av_freep(&data);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user