mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
lc3: tests: Zero out the buffer we allocate for the tests
Otherwise liblc3 will try to access the uninitialized memory and it makes valgrind very sad. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7657>
This commit is contained in:
parent
1032450a0e
commit
4b8d43446e
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ static GstBuffer *
|
|||
create_test_buffer (guint64 num, guint64 size)
|
||||
{
|
||||
GstBuffer *buffer;
|
||||
guint64 *data = g_malloc (size);
|
||||
guint64 *data = g_malloc0 (size);
|
||||
|
||||
*data = num;
|
||||
|
||||
|
|
Loading…
Reference in a new issue