Merge pull request #3100 from jolange/fix3086

free last_motion_notify before returning
next
Ingo Bürk 2017-12-25 09:52:09 +01:00 committed by GitHub
commit 320246ab47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -747,8 +747,10 @@ static void xcb_drag_prepare_cb(EV_P_ ev_prepare *w, int revents) {
if (last_motion_notify != (xcb_motion_notify_event_t *)event)
free(event);
if (dragloop->result != DRAGGING)
if (dragloop->result != DRAGGING) {
free(last_motion_notify);
return;
}
}
if (last_motion_notify == NULL)