tests/lc3: Allocate the same size for the buffer and the data

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7640>
This commit is contained in:
Jordan Petridis 2024-10-09 20:37:10 +03:00 committed by Backport Bot
parent d9ef7fddc6
commit bd305ab52e

View file

@ -252,7 +252,7 @@ static GstBuffer *
create_test_buffer (guint64 num, guint64 size)
{
GstBuffer *buffer;
guint64 *data = g_malloc (sizeof (guint64));
guint64 *data = g_malloc (size);
*data = num;