diff options
author | Lukas Straub | 2021-03-18 05:11:51 +0100 |
---|---|---|
committer | Jason Wang | 2021-03-22 10:34:31 +0100 |
commit | 9162ed664926fe6e8dfa2f43e152ab088b5369ed (patch) | |
tree | 6660e7ccd77e192d7ff183db9fdce5dc568c5df7 | |
parent | hw/net: virtio-net: Initialize nc->do_not_pad to true (diff) | |
download | qemu-9162ed664926fe6e8dfa2f43e152ab088b5369ed.tar.gz qemu-9162ed664926fe6e8dfa2f43e152ab088b5369ed.tar.xz qemu-9162ed664926fe6e8dfa2f43e152ab088b5369ed.zip |
net/colo-compare.c: Fix memory leak for non-tcp packet
Additional to removing the packet from the secondary queue,
we also need to free it.
Signed-off-by: Lukas Straub <lukasstraub2@web.de>
Signed-off-by: Zhang Chen <chen.zhang@intel.com>
Reviewed-by: Zhang Chen <chen.zhang@intel.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
-rw-r--r-- | net/colo-compare.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/colo-compare.c b/net/colo-compare.c index 84db4978ac..2e819ffedb 100644 --- a/net/colo-compare.c +++ b/net/colo-compare.c @@ -690,6 +690,7 @@ static void colo_compare_packet(CompareState *s, Connection *conn, if (result) { colo_release_primary_pkt(s, pkt); + packet_destroy(result->data, NULL); g_queue_remove(&conn->secondary_list, result->data); } else { /* |