aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-08-12 23:00:15 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-08-12 23:00:15 +0800
commit3d2f200b14e889d1ac91b3d081c1c00abd0d2e37 (patch)
treea8fb45fd7d6540fff50d5a1a88323d41f6ca4cd4 /libempathy
parent4454890cf434cece46d5cf56b3e23b500cb6ac43 (diff)
downloadgsoc2013-empathy-3d2f200b14e889d1ac91b3d081c1c00abd0d2e37.tar
gsoc2013-empathy-3d2f200b14e889d1ac91b3d081c1c00abd0d2e37.tar.gz
gsoc2013-empathy-3d2f200b14e889d1ac91b3d081c1c00abd0d2e37.tar.bz2
gsoc2013-empathy-3d2f200b14e889d1ac91b3d081c1c00abd0d2e37.tar.lz
gsoc2013-empathy-3d2f200b14e889d1ac91b3d081c1c00abd0d2e37.tar.xz
gsoc2013-empathy-3d2f200b14e889d1ac91b3d081c1c00abd0d2e37.tar.zst
gsoc2013-empathy-3d2f200b14e889d1ac91b3d081c1c00abd0d2e37.zip
add g_return_val_if_fail in _new functions
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-tp-call.c1
-rw-r--r--libempathy/empathy-tp-chat.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c
index 66fd3f870..9dcf9bfd7 100644
--- a/libempathy/empathy-tp-call.c
+++ b/libempathy/empathy-tp-call.c
@@ -604,6 +604,7 @@ EmpathyTpCall *
empathy_tp_call_new (TpAccount *account,
TpChannel *channel)
{
+ g_return_val_if_fail (TP_IS_ACCOUNT (account), NULL);
g_return_val_if_fail (TP_IS_CHANNEL (channel), NULL);
return g_object_new (EMPATHY_TYPE_TP_CALL,
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c
index 7bc9a9c75..2fd6fc506 100644
--- a/libempathy/empathy-tp-chat.c
+++ b/libempathy/empathy-tp-chat.c
@@ -1545,6 +1545,9 @@ EmpathyTpChat *
empathy_tp_chat_new (TpAccount *account,
TpChannel *channel)
{
+ g_return_val_if_fail (TP_IS_ACCOUNT (account), NULL);
+ g_return_val_if_fail (TP_IS_CHANNEL (channel), NULL);
+
return g_object_new (EMPATHY_TYPE_TP_CHAT,
"account", account,
"channel", channel,