From: Jason Wang Date: Wed, 6 Nov 2013 08:58:08 +0000 (+0800) Subject: virtio-net: only delete bh that existed X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fe2dafa02de4f80ab36f6e0f4ddfcd6418c03c49;p=qemu.git virtio-net: only delete bh that existed We delete without check whether it existed during exit. This will lead NULL pointer deference since it was created conditionally depends on guest driver status and features. So add a check of existence before trying to delete it. Cc: qemu-stable@nongnu.org Signed-off-by: Jason Wang Reviewed-by: Michael S. Tsirkin Message-id: 1383728288-28469-1-git-send-email-jasowang@redhat.com Signed-off-by: Anthony Liguori --- diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c index 22dbd053d4..ae51d96a7a 100644 --- a/hw/net/virtio-net.c +++ b/hw/net/virtio-net.c @@ -1601,7 +1601,7 @@ static int virtio_net_device_exit(DeviceState *qdev) if (q->tx_timer) { timer_del(q->tx_timer); timer_free(q->tx_timer); - } else { + } else if (q->tx_bh) { qemu_bh_delete(q->tx_bh); } }