summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/lib/telepathy/contactlist/conn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/telepathy/contactlist/conn.c b/tests/lib/telepathy/contactlist/conn.c
index 7a15121..748abef 100644
--- a/tests/lib/telepathy/contactlist/conn.c
+++ b/tests/lib/telepathy/contactlist/conn.c
@@ -178,7 +178,7 @@ tp_test_contact_list_normalize_contact (TpHandleRepoIface *repo,
gpointer context,
GError **error)
{
- if (id[0] == '\0')
+ if (id == NULL || id[0] == '\0')
{
g_set_error (error, TP_ERRORS, TP_ERROR_INVALID_HANDLE,
"Contact ID must not be empty");
@@ -194,7 +194,7 @@ tp_test_contact_list_normalize_group (TpHandleRepoIface *repo,
gpointer context,
GError **error)
{
- if (id[0] == '\0')
+ if (id == NULL || id[0] == '\0')
{
g_set_error (error, TP_ERRORS, TP_ERROR_INVALID_HANDLE,
"Contact group name cannot be empty");