diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-19 15:51:02 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-19 15:51:02 +0800 |
commit | fe45d91be46ad4c05bdecf162b720ee7502c3f30 (patch) | |
tree | ef1cc2cad3125a411f6db20c100d51aedf8ffd3e | |
parent | 692f6f48a36f967beec4ff2509b6ea2747e6ad76 (diff) | |
download | gsoc2013-empathy-fe45d91be46ad4c05bdecf162b720ee7502c3f30.tar gsoc2013-empathy-fe45d91be46ad4c05bdecf162b720ee7502c3f30.tar.gz gsoc2013-empathy-fe45d91be46ad4c05bdecf162b720ee7502c3f30.tar.bz2 gsoc2013-empathy-fe45d91be46ad4c05bdecf162b720ee7502c3f30.tar.lz gsoc2013-empathy-fe45d91be46ad4c05bdecf162b720ee7502c3f30.tar.xz gsoc2013-empathy-fe45d91be46ad4c05bdecf162b720ee7502c3f30.tar.zst gsoc2013-empathy-fe45d91be46ad4c05bdecf162b720ee7502c3f30.zip |
initialize a GError pointer
-rw-r--r-- | libempathy/empathy-dispatcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c index 2141b0b15..e476fc671 100644 --- a/libempathy/empathy-dispatcher.c +++ b/libempathy/empathy-dispatcher.c @@ -347,7 +347,7 @@ dispatcher_connection_invalidated_cb (TpConnection *connection, if (connection_data != NULL) { GList *l; - GError *error; + GError *error = NULL; error = g_error_new_literal (domain, code, message); |