mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
neon,dvd: also use g_value_set_static_string() here for static strings
This commit is contained in:
parent
cadb0526d5
commit
aa65063eda
1 changed files with 2 additions and 2 deletions
|
@ -387,7 +387,7 @@ gst_neonhttp_src_get_property (GObject * object, guint prop_id,
|
|||
g_value_set_string (value, str);
|
||||
ne_free (str);
|
||||
} else {
|
||||
g_value_set_string (value, "");
|
||||
g_value_set_static_string (value, "");
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
@ -402,7 +402,7 @@ gst_neonhttp_src_get_property (GObject * object, guint prop_id,
|
|||
g_value_set_string (value, str);
|
||||
ne_free (str);
|
||||
} else {
|
||||
g_value_set_string (value, "");
|
||||
g_value_set_static_string (value, "");
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue