usb-mtp: fix call to trace function
authorBandan Das <bsd@redhat.com>
Wed, 23 Dec 2015 09:09:47 +0000 (14:39 +0530)
committerGerd Hoffmann <kraxel@redhat.com>
Fri, 8 Jan 2016 08:25:50 +0000 (09:25 +0100)
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>
hw/usb/dev-mtp.c

index db1fd59..4177a87 100644 (file)
@@ -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: