mirror of https://gitee.com/openkylin/qemu.git
usb-mtp: fix call to trace function
trace_usb_mtp_inotify_event() was being called after the object was being freed. Signed-off-by: Bandan Das <bsd@redhat.com> Message-id: 1450861787-16213-3-git-send-email-bsd@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
c22d5dcd7a
commit
ec93e158b1
|
@ -502,9 +502,9 @@ static void inotify_watchfn(void *arg)
|
|||
entry = g_new0(MTPMonEntry, 1);
|
||||
entry->handle = o->handle;
|
||||
entry->event = EVT_OBJ_REMOVED;
|
||||
usb_mtp_object_free(s, o);
|
||||
trace_usb_mtp_inotify_event(s->dev.addr, o->path,
|
||||
event->mask, "Obj Deleted");
|
||||
usb_mtp_object_free(s, o);
|
||||
break;
|
||||
|
||||
case IN_MODIFY:
|
||||
|
|
Loading…
Reference in New Issue