mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
multisocketsink: Allocate enough memory on the stack in the test
Otherwise we just overwrite other things on the stack and cause crashes.
This commit is contained in:
parent
1ee2fccfdf
commit
15cc12b0b9
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ GST_START_TEST (test_add_client)
|
|||
GstElement *sink;
|
||||
GstBuffer *buffer;
|
||||
GstCaps *caps;
|
||||
gchar data[4];
|
||||
gchar data[9];
|
||||
GSocket *sinksocket, *srcsocket;
|
||||
|
||||
sink = setup_multisocketsink ();
|
||||
|
|
Loading…
Reference in a new issue