summaryrefslogtreecommitdiff
path: root/ext/neon
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2010-03-16 23:43:02 +0200
committerStefan Kost <ensonic@users.sf.net>2010-03-16 23:44:01 +0200
commitaa65063edaae0aad7df02b25b0f245d542c51106 (patch)
tree113dc66709caf64cc1e18bf0ec0d4e77f3b1cf8e /ext/neon
parentcadb0526d573d70d3553c1d6ec897f54c7b02ad6 (diff)
downloadgstreamer-plugins-bad-aa65063edaae0aad7df02b25b0f245d542c51106.tar.gz
neon,dvd: also use g_value_set_static_string() here for static strings
Diffstat (limited to 'ext/neon')
-rw-r--r--ext/neon/gstneonhttpsrc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/neon/gstneonhttpsrc.c b/ext/neon/gstneonhttpsrc.c
index cceb2689f..61eec9aec 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;
}