diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2011-03-24 10:45:13 +0000 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2011-03-24 10:45:13 +0000 |
commit | e3a81ac84abf6cedaea3aac4d638461e296346fd (patch) | |
tree | ca3fd545984df32f7b53413121ab0e75d51e1016 | |
parent | c492cf03519d25a69ef7291bba69c963478922ec (diff) |
tube-stream: don't unref a NULL stanza
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r-- | src/tube-stream.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tube-stream.c b/src/tube-stream.c index 0a230bf1..e902021e 100644 --- a/src/tube-stream.c +++ b/src/tube-stream.c @@ -1867,6 +1867,7 @@ iq_close_reply_cb (GObject *source_object, { DEBUG ("Failed to close IQ: %s", error->message); g_clear_error (&error); + return; } g_object_unref (stanza); |