mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
structure: no need to clear on init
We don't need to clear the field on init because we will do that again before we are going to use the field later.
This commit is contained in:
parent
766e7afc23
commit
c6e6e7c97b
1 changed files with 1 additions and 1 deletions
|
@ -1968,7 +1968,7 @@ gst_structure_from_string (const gchar * string, gchar ** end)
|
|||
char *r;
|
||||
char save;
|
||||
GstStructure *structure = NULL;
|
||||
GstStructureField field = { 0 };
|
||||
GstStructureField field;
|
||||
|
||||
g_return_val_if_fail (string != NULL, NULL);
|
||||
|
||||
|
|
Loading…
Reference in a new issue