mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
imagesequencesrc: Properly set default location
Noticed this because the generic_states test kept segfaulting at random. GLibC 2.37 can crash when NULL is supplied as a format string. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4109>
This commit is contained in:
parent
16ce61fb57
commit
ac83e121a7
2 changed files with 2 additions and 2 deletions
|
@ -10001,7 +10001,7 @@
|
|||
"construct": false,
|
||||
"construct-only": false,
|
||||
"controllable": false,
|
||||
"default": "NULL",
|
||||
"default": "%%05d",
|
||||
"mutable": "null",
|
||||
"readable": true,
|
||||
"type": "gchararray",
|
||||
|
|
|
@ -357,7 +357,7 @@ gst_image_sequence_src_init (GstImageSequenceSrc * self)
|
|||
self->start_index = DEFAULT_START_INDEX;
|
||||
self->index = 0;
|
||||
self->stop_index = DEFAULT_STOP_INDEX;
|
||||
self->path = NULL;
|
||||
self->path = g_strdup (DEFAULT_LOCATION);
|
||||
self->caps = NULL;
|
||||
self->n_frames = 0;
|
||||
self->fps_n = 30;
|
||||
|
|
Loading…
Reference in a new issue