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/4431>
This commit is contained in:
Jan Alexander Steffens (heftig) 2023-03-03 18:40:22 +00:00 committed by Tim-Philipp Müller
parent e3fa7c0dda
commit 026e82361b
2 changed files with 2 additions and 2 deletions

View file

@ -9555,7 +9555,7 @@
"construct": false,
"construct-only": false,
"controllable": false,
"default": "NULL",
"default": "%%05d",
"mutable": "null",
"readable": true,
"type": "gchararray",

View file

@ -354,7 +354,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;