Fix possibly uninitialized variable

This commit is contained in:
Drew DeVault 2017-09-22 09:36:02 -04:00
parent 21f5b92973
commit b6cf9b14a4
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ static void handle_xdg_surface_v6_request_move(struct wl_listener *listener,
wl_container_of(listener, esurface, request_move_listener);
struct wlr_xdg_toplevel_v6_move_event *e = data;
struct sample_state *sample = esurface->sample;
struct input_event_cache *event;
struct input_event_cache *event = NULL;
for (size_t i = 0;
i < sizeof(sample->input_cache) / sizeof(sample->input_cache[0]);
++i) {