From d816dd04d64956b2c1ee25e8de89655c38d240ef Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Fri, 28 Feb 2014 11:27:20 +0100 Subject: [PATCH 4/6] file-transfer-chan: set "" as default URI NULL isn't a valid D-Bus property, breaking tp_asv_to_vardict(). --- tests/lib/file-transfer-chan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/file-transfer-chan.c b/tests/lib/file-transfer-chan.c index 813826e..87f6d3f 100644 --- a/tests/lib/file-transfer-chan.c +++ b/tests/lib/file-transfer-chan.c @@ -694,7 +694,7 @@ tp_tests_file_transfer_channel_class_init ( param_spec = g_param_spec_string ("uri", "URI", "The URI property of this channel", - NULL, + "", G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); g_object_class_install_property (object_class, PROP_URI, param_spec); -- 1.8.5.3