diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2016-08-11 18:11:04 +0100 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2017-01-23 15:32:18 +0000 |
commit | 937470bb5470825e781ae50e92ff973a6b54d80f (patch) | |
tree | ed7f4e397e7eaf753f2b0e26256ef5e899c17990 /io | |
parent | 6979a813f38d221bf68c3928a8d2b810cefc34b5 (diff) |
io: stop incrementing reference in qio_task_get_source
Incrementing the reference in qio_task_get_source is
not necessary, since we're not running concurrently
with any other code touching the QIOTask. This
minimizes chances of further memory leaks.
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'io')
-rw-r--r-- | io/channel-socket.c | 3 | ||||
-rw-r--r-- | io/channel-tls.c | 2 | ||||
-rw-r--r-- | io/task.c | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/io/channel-socket.c b/io/channel-socket.c index d7e03f6266..45df819a82 100644 --- a/io/channel-socket.c +++ b/io/channel-socket.c @@ -168,7 +168,6 @@ static int qio_channel_socket_connect_worker(QIOTask *task, addr, errp); - object_unref(OBJECT(ioc)); return ret; } @@ -231,7 +230,6 @@ static int qio_channel_socket_listen_worker(QIOTask *task, addr, errp); - object_unref(OBJECT(ioc)); return ret; } @@ -309,7 +307,6 @@ static int qio_channel_socket_dgram_worker(QIOTask *task, data->remoteAddr, errp); - object_unref(OBJECT(ioc)); return ret; } diff --git a/io/channel-tls.c b/io/channel-tls.c index d24dc8c613..cf3bcca7ed 100644 --- a/io/channel-tls.c +++ b/io/channel-tls.c @@ -200,8 +200,6 @@ static gboolean qio_channel_tls_handshake_io(QIOChannel *ioc, qio_channel_tls_handshake_task( tioc, task); - object_unref(OBJECT(tioc)); - return FALSE; } @@ -156,6 +156,5 @@ void qio_task_abort(QIOTask *task, Object *qio_task_get_source(QIOTask *task) { - object_ref(task->source); return task->source; } |