diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-02 14:57:19 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-02 14:57:19 +0800 |
commit | cfd826fde6555f0441d43fc0857468140b194cd6 (patch) | |
tree | c856026f7a503c5806d4b2fe977e064149f52b95 /libempathy/empathy-tp-call.c | |
parent | b30136b7f990e5a1068e91c00f92fbefd7526a9e (diff) | |
download | gsoc2013-empathy-cfd826fde6555f0441d43fc0857468140b194cd6.tar gsoc2013-empathy-cfd826fde6555f0441d43fc0857468140b194cd6.tar.gz gsoc2013-empathy-cfd826fde6555f0441d43fc0857468140b194cd6.tar.bz2 gsoc2013-empathy-cfd826fde6555f0441d43fc0857468140b194cd6.tar.lz gsoc2013-empathy-cfd826fde6555f0441d43fc0857468140b194cd6.tar.xz gsoc2013-empathy-cfd826fde6555f0441d43fc0857468140b194cd6.tar.zst gsoc2013-empathy-cfd826fde6555f0441d43fc0857468140b194cd6.zip |
Fix crash: g_object_new()'s last argument must be NULL (Alban Crequy).
svn path=/trunk/; revision=686
Diffstat (limited to 'libempathy/empathy-tp-call.c')
-rw-r--r-- | libempathy/empathy-tp-call.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c index d94c78f1f..ec8f34757 100644 --- a/libempathy/empathy-tp-call.c +++ b/libempathy/empathy-tp-call.c @@ -527,7 +527,8 @@ tp_call_start_stream_engine (EmpathyTpCall *call) priv->stream_engine = g_object_new (TP_TYPE_PROXY, "bus-name", STREAM_ENGINE_BUS_NAME, "dbus-connection", tp_get_bus (), - "object-path", STREAM_ENGINE_OBJECT_PATH); + "object-path", STREAM_ENGINE_OBJECT_PATH, + NULL); tp_proxy_add_interface_by_id (priv->stream_engine, EMP_IFACE_QUARK_STREAM_ENGINE); tp_proxy_add_interface_by_id (priv->stream_engine, |