diff options
| author | Zhang Chen | 2017-02-22 06:16:06 +0100 |
|---|---|---|
| committer | Jason Wang | 2017-03-06 04:46:02 +0100 |
| commit | 727c2d764fef0c9492a2e220ba8a6d0979836d36 (patch) | |
| tree | d5d6dc6c8177ba4498b8ca4e4ebbf21e8259f149 | |
| parent | colo-compare: Fix removing fds been watched incorrectly in finalization (diff) | |
| download | qemu-727c2d764fef0c9492a2e220ba8a6d0979836d36.tar.gz qemu-727c2d764fef0c9492a2e220ba8a6d0979836d36.tar.xz qemu-727c2d764fef0c9492a2e220ba8a6d0979836d36.zip | |
net/colo-compare: Fix memory free error
We use g_queue_init() to init s->conn_list, so we should use g_queue_clear()
to instead of g_queue_free().
Signed-off-by: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
Reviewed-by: zhanghailiang <zhang.zhanghailiang@huawei.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
| -rw-r--r-- | net/colo-compare.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/colo-compare.c b/net/colo-compare.c index a6fc2ff48b..300f017b59 100644 --- a/net/colo-compare.c +++ b/net/colo-compare.c @@ -729,7 +729,7 @@ static void colo_compare_finalize(Object *obj) /* Release all unhandled packets after compare thead exited */ g_queue_foreach(&s->conn_list, colo_flush_packets, s); - g_queue_free(&s->conn_list); + g_queue_clear(&s->conn_list); g_hash_table_destroy(s->connection_track_table); g_free(s->pri_indev); |
