Skip to content

Commit

Permalink
Wayland: Fixed not freeing memory if initialization failed.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Apr 9, 2015
1 parent dc33fb9 commit f879634
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/video/wayland/SDL_waylandvideo.c
Expand Up @@ -284,11 +284,13 @@ Wayland_VideoInit(_THIS)

data->display = WAYLAND_wl_display_connect(NULL);
if (data->display == NULL) {
SDL_free(data);
return SDL_SetError("Failed to connect to a Wayland display");
}

data->registry = wl_display_get_registry(data->display);
if (data->registry == NULL) {
SDL_free(data);
return SDL_SetError("Failed to get the Wayland registry");
}

Expand All @@ -302,6 +304,7 @@ Wayland_VideoInit(_THIS)

data->xkb_context = WAYLAND_xkb_context_new(0);
if (!data->xkb_context) {
SDL_free(data);
return SDL_SetError("Failed to create XKB context");
}

Expand Down

0 comments on commit f879634

Please sign in to comment.