From 666bc9234a4828da3159dca1743db1c4083a396c Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Thu, 7 Aug 2014 16:43:13 -0400 Subject: [PATCH] desktop-shell: Add a missing return; in an error path --- desktop-shell/shell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop-shell/shell.c b/desktop-shell/shell.c index 250cf88..7370972 100644 --- a/desktop-shell/shell.c +++ b/desktop-shell/shell.c @@ -3741,6 +3741,7 @@ xdg_get_xdg_popup(struct wl_client *client, wl_resource_post_error(surface_resource, WL_DISPLAY_ERROR_INVALID_OBJECT, "xdg_shell::get_xdg_popup requires a parent shell surface"); + return; } parent = wl_resource_get_user_data(parent_resource); -- 2.7.4