aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop/wl_shell.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-05-14 08:00:08 -0400
committerGitHub <noreply@github.com>2018-05-14 08:00:08 -0400
commit4e6cb2b4b2cff21ca1ec751986d8a2e138ea1ed5 (patch)
tree20e1308a555f14212ac246af0cd559d3a37a5065 /sway/desktop/wl_shell.c
parent270c1ee7e507f1d2960920a7f4f0cc70f4e13d26 (diff)
parent92b8497a0b7cb866dfea2214625c5a58724aa4d6 (diff)
downloadsway-4e6cb2b4b2cff21ca1ec751986d8a2e138ea1ed5.tar.xz
Merge pull request #1968 from RyanDwyer/fix-criteria
Fix double free in criteria
Diffstat (limited to 'sway/desktop/wl_shell.c')
-rw-r--r--sway/desktop/wl_shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/desktop/wl_shell.c b/sway/desktop/wl_shell.c
index 99e8947b..cb3774f7 100644
--- a/sway/desktop/wl_shell.c
+++ b/sway/desktop/wl_shell.c
@@ -20,7 +20,7 @@ static struct sway_wl_shell_view *wl_shell_view_from_view(
return (struct sway_wl_shell_view *)view;
}
-static const char *get_prop(struct sway_view *view, enum sway_view_prop prop) {
+static const char *get_string_prop(struct sway_view *view, enum sway_view_prop prop) {
if (wl_shell_view_from_view(view) == NULL) {
return NULL;
}
@@ -70,7 +70,7 @@ static void set_fullscreen(struct sway_view *view, bool fullscreen) {
}
static const struct sway_view_impl view_impl = {
- .get_prop = get_prop,
+ .get_string_prop = get_string_prop,
.configure = configure,
.close = _close,
.destroy = destroy,