projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3c916e
)
Fix free use in xen_backend.c
author
Jean-Christophe DUBOIS
<jcd@tribudubois.net>
Sun, 15 Nov 2009 18:18:19 +0000
(19:18 +0100)
committer
Anthony Liguori
<aliguori@us.ibm.com>
Wed, 2 Dec 2009 14:57:43 +0000
(08:57 -0600)
xen_backend.c is using qemu_free() instead of free().
Fix it.
Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
hw/xen_backend.c
patch
|
blob
|
history
diff --git
a/hw/xen_backend.c
b/hw/xen_backend.c
index 658ea8d1d37a77fa75e284adaacf4fa073767e35..a2e408fa0e58bf6a8c329d04290a65b998c0c00a 100644
(file)
--- a/
hw/xen_backend.c
+++ b/
hw/xen_backend.c
@@
-594,7
+594,7
@@
static void xenstore_update(void *unused)
xenstore_update_fe(vec[XS_WATCH_PATH], (void*)ptr);
cleanup:
-
qemu_
free(vec);
+ free(vec);
}
static void xen_be_evtchn_event(void *opaque)