aboutsummaryrefslogtreecommitdiff
path: root/backend/libinput/touch.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-11 14:22:02 -0400
committerGitHub <noreply@github.com>2017-08-11 14:22:02 -0400
commit9f103ca71e798d9676e6bdc9c62ce8efdc9ad5d2 (patch)
treec207b96c6f1c9eb8786349423a630a9fddc5e7cc /backend/libinput/touch.c
parent62d8b252c093b3bd71362b1c76cb70b16a6cd63a (diff)
parent1c7dd71208169248e7fe9c7d86cce13955497017 (diff)
Merge pull request #66 from martinetd/leak_plumbing
Leak plumbing
Diffstat (limited to 'backend/libinput/touch.c')
-rw-r--r--backend/libinput/touch.c56
1 files changed, 26 insertions, 30 deletions
diff --git a/backend/libinput/touch.c b/backend/libinput/touch.c
index e0e866b0..f6eeb8d3 100644
--- a/backend/libinput/touch.c
+++ b/backend/libinput/touch.c
@@ -23,15 +23,14 @@ void handle_touch_down(struct libinput_event *event,
}
struct libinput_event_touch *tevent =
libinput_event_get_touch_event(event);
- struct wlr_event_touch_down *wlr_event =
- calloc(1, sizeof(struct wlr_event_touch_down));
- wlr_event->time_sec = libinput_event_touch_get_time(tevent);
- wlr_event->time_usec = libinput_event_touch_get_time_usec(tevent);
- wlr_event->slot = libinput_event_touch_get_slot(tevent);
- wlr_event->x_mm = libinput_event_touch_get_x(tevent);
- wlr_event->y_mm = libinput_event_touch_get_y(tevent);
- libinput_device_get_size(device, &wlr_event->width_mm, &wlr_event->height_mm);
- wl_signal_emit(&dev->touch->events.down, wlr_event);
+ struct wlr_event_touch_down wlr_event = { 0 };
+ wlr_event.time_sec = libinput_event_touch_get_time(tevent);
+ wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent);
+ wlr_event.slot = libinput_event_touch_get_slot(tevent);
+ wlr_event.x_mm = libinput_event_touch_get_x(tevent);
+ wlr_event.y_mm = libinput_event_touch_get_y(tevent);
+ libinput_device_get_size(device, &wlr_event.width_mm, &wlr_event.height_mm);
+ wl_signal_emit(&dev->touch->events.down, &wlr_event);
}
void handle_touch_up(struct libinput_event *event,
@@ -44,12 +43,11 @@ void handle_touch_up(struct libinput_event *event,
}
struct libinput_event_touch *tevent =
libinput_event_get_touch_event(event);
- struct wlr_event_touch_up *wlr_event =
- calloc(1, sizeof(struct wlr_event_touch_up));
- wlr_event->time_sec = libinput_event_touch_get_time(tevent);
- wlr_event->time_usec = libinput_event_touch_get_time_usec(tevent);
- wlr_event->slot = libinput_event_touch_get_slot(tevent);
- wl_signal_emit(&dev->touch->events.up, wlr_event);
+ struct wlr_event_touch_up wlr_event = { 0 };
+ wlr_event.time_sec = libinput_event_touch_get_time(tevent);
+ wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent);
+ wlr_event.slot = libinput_event_touch_get_slot(tevent);
+ wl_signal_emit(&dev->touch->events.up, &wlr_event);
}
void handle_touch_motion(struct libinput_event *event,
@@ -62,15 +60,14 @@ void handle_touch_motion(struct libinput_event *event,
}
struct libinput_event_touch *tevent =
libinput_event_get_touch_event(event);
- struct wlr_event_touch_motion *wlr_event =
- calloc(1, sizeof(struct wlr_event_touch_motion));
- wlr_event->time_sec = libinput_event_touch_get_time(tevent);
- wlr_event->time_usec = libinput_event_touch_get_time_usec(tevent);
- wlr_event->slot = libinput_event_touch_get_slot(tevent);
- wlr_event->x_mm = libinput_event_touch_get_x(tevent);
- wlr_event->y_mm = libinput_event_touch_get_y(tevent);
- libinput_device_get_size(device, &wlr_event->width_mm, &wlr_event->height_mm);
- wl_signal_emit(&dev->touch->events.motion, wlr_event);
+ struct wlr_event_touch_motion wlr_event = { 0 };
+ wlr_event.time_sec = libinput_event_touch_get_time(tevent);
+ wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent);
+ wlr_event.slot = libinput_event_touch_get_slot(tevent);
+ wlr_event.x_mm = libinput_event_touch_get_x(tevent);
+ wlr_event.y_mm = libinput_event_touch_get_y(tevent);
+ libinput_device_get_size(device, &wlr_event.width_mm, &wlr_event.height_mm);
+ wl_signal_emit(&dev->touch->events.motion, &wlr_event);
}
void handle_touch_cancel(struct libinput_event *event,
@@ -83,10 +80,9 @@ void handle_touch_cancel(struct libinput_event *event,
}
struct libinput_event_touch *tevent =
libinput_event_get_touch_event(event);
- struct wlr_event_touch_cancel *wlr_event =
- calloc(1, sizeof(struct wlr_event_touch_cancel));
- wlr_event->time_sec = libinput_event_touch_get_time(tevent);
- wlr_event->time_usec = libinput_event_touch_get_time_usec(tevent);
- wlr_event->slot = libinput_event_touch_get_slot(tevent);
- wl_signal_emit(&dev->touch->events.cancel, wlr_event);
+ struct wlr_event_touch_cancel wlr_event = { 0 };
+ wlr_event.time_sec = libinput_event_touch_get_time(tevent);
+ wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent);
+ wlr_event.slot = libinput_event_touch_get_slot(tevent);
+ wl_signal_emit(&dev->touch->events.cancel, &wlr_event);
}