| Submitter | Brad Hards |
|---|---|
| Date | June 2, 2011, 5:41 a.m. |
| Message ID | <1306993270-24144-8-git-send-email-bradh@frogmouth.net> |
| Download | mbox | patch |
| Permalink | /patch/98354/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/usb-uvc.c b/hw/usb-uvc.c index 1e3d339..d1e71f8 100644 --- a/hw/usb-uvc.c +++ b/hw/usb-uvc.c @@ -1025,7 +1025,7 @@ static int usb_uvc_initfn(USBDevice *dev) DPRINTF("Maximum image size: %d bytes.\n", frame_max_length); DPRINTF("Allocating memory for frames.\n"); - frame = malloc(frame_max_length); + frame = qemu_malloc(frame_max_length); frame_start = frame; frame_id = 1;
As requested by Blue Swirl (2010-06-10) Signed-off-by: Brad Hards <bradh@frogmouth.net> --- hw/usb-uvc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)