From aa65063edaae0aad7df02b25b0f245d542c51106 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Tue, 16 Mar 2010 23:43:02 +0200 Subject: [PATCH] neon,dvd: also use g_value_set_static_string() here for static strings --- ext/neon/gstneonhttpsrc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/neon/gstneonhttpsrc.c b/ext/neon/gstneonhttpsrc.c index cceb2689fb..61eec9aeca 100644 --- a/ext/neon/gstneonhttpsrc.c +++ b/ext/neon/gstneonhttpsrc.c @@ -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; }