Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP3:GA
qemu.5922
0133-net-eepro100-fix-memory-leak-in-dev.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0133-net-eepro100-fix-memory-leak-in-dev.patch of Package qemu.5922
From 7c56311e7890d5d55a3e27919dc123b12852fb92 Mon Sep 17 00:00:00 2001 From: Li Qiang <liqiang6-s@360.cn> Date: Sat, 8 Oct 2016 05:07:25 -0700 Subject: [PATCH] net: eepro100: fix memory leak in device uninit The exit dispatch of eepro100 network card device doesn't free the 's->vmstate' field which was allocated in device realize thus leading a host memory leak. This patch avoid this. Signed-off-by: Li Qiang <liqiang6-s@360.cn> Signed-off-by: Jason Wang <jasowang@redhat.com> (cherry picked from commit 2634ab7fe29b3f75d0865b719caf8f310d634aae) [BR: CVE-2016-9101 BSC#1007391] Signed-off-by: Bruce Rogers <brogers@suse.com> --- hw/net/eepro100.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/net/eepro100.c b/hw/net/eepro100.c index 3e874cd695..61ef0088d0 100644 --- a/hw/net/eepro100.c +++ b/hw/net/eepro100.c @@ -1853,6 +1853,7 @@ static void pci_nic_uninit(PCIDevice *pci_dev) EEPRO100State *s = DO_UPCAST(EEPRO100State, dev, pci_dev); vmstate_unregister(&pci_dev->qdev, s->vmstate, s); + g_free(s->vmstate); eeprom93xx_free(&pci_dev->qdev, s->eeprom); qemu_del_nic(s->nic); }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor