diff options
author | Ross Burton <ross@linux.intel.com> | 2009-05-13 12:41:27 +0100 |
---|---|---|
committer | Ross Burton <ross@linux.intel.com> | 2009-05-15 08:30:17 +0100 |
commit | e36ff627a49cf24927902d8b20dc1a3a98a2a525 (patch) | |
tree | 2dfaf983f4658c8b333501ef037b292be57e195d | |
parent | 153d2e8c5cc3452a7275c7ea7fa6abe8750cde8b (diff) |
Fix call cleanup which was causing invalid writes
-rw-r--r-- | rest/rest-proxy-call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rest/rest-proxy-call.c b/rest/rest-proxy-call.c index b8e0225..03ad079 100644 --- a/rest/rest-proxy-call.c +++ b/rest/rest-proxy-call.c @@ -540,9 +540,9 @@ _call_async_finished_cb (SoupMessage *message, closure); } + priv->cur_call_closure = NULL; g_object_unref (closure->call); g_slice_free (RestProxyCallAsyncClosure, closure); - priv->cur_call_closure = NULL; } static void |