summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Maier <tamiko@gentoo.org>2017-02-12 22:08:18 -0600
committerMatthias Maier <tamiko@gentoo.org>2017-02-12 22:08:18 -0600
commitcd0007ee8270ccd2773604782ddcc4b67fa3a103 (patch)
tree6745cc5c138951f861fd66b4a9f9cdff82fa4892 /app-emulation/qemu/files/qemu-2.7.0-CVE-2016-7994-1.patch
parentsys-apps/portage: make sync-depth message conditional (diff)
downloadgentoo-cd0007ee8270ccd2773604782ddcc4b67fa3a103.tar.gz
gentoo-cd0007ee8270ccd2773604782ddcc4b67fa3a103.tar.bz2
gentoo-cd0007ee8270ccd2773604782ddcc4b67fa3a103.zip
app-emulation/qemu: drop old versions 2.7.0, 2.7.1
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-emulation/qemu/files/qemu-2.7.0-CVE-2016-7994-1.patch')
-rw-r--r--app-emulation/qemu/files/qemu-2.7.0-CVE-2016-7994-1.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/app-emulation/qemu/files/qemu-2.7.0-CVE-2016-7994-1.patch b/app-emulation/qemu/files/qemu-2.7.0-CVE-2016-7994-1.patch
deleted file mode 100644
index 6fe77f367da5..000000000000
--- a/app-emulation/qemu/files/qemu-2.7.0-CVE-2016-7994-1.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From: Li Qiang <address@hidden>
-
-In virtio gpu resource create dispatch, if the pixman format is zero
-it doesn't free the resource object allocated previously. Thus leading
-a host memory leak issue. This patch avoid this.
-
-Signed-off-by: Li Qiang <address@hidden>
----
- hw/display/virtio-gpu.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c
-index 7fe6ed8..5b6d17b 100644
---- a/hw/display/virtio-gpu.c
-+++ b/hw/display/virtio-gpu.c
-@@ -333,6 +333,7 @@ static void virtio_gpu_resource_create_2d(VirtIOGPU *g,
- qemu_log_mask(LOG_GUEST_ERROR,
- "%s: host couldn't handle guest format %d\n",
- __func__, c2d.format);
-+ g_free(res);
- cmd->error = VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER;
- return;
- }
---
-1.8.3.1