From cfd826fde6555f0441d43fc0857468140b194cd6 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Sun, 2 Mar 2008 06:57:19 +0000 Subject: Fix crash: g_object_new()'s last argument must be NULL (Alban Crequy). svn path=/trunk/; revision=686 --- libempathy/empathy-tp-call.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, -- cgit v1.2.3