From: Marcus Fritzsch Date: Mon, 19 Jun 2017 11:52:10 +0000 (+0200) Subject: wayland: minor fix with this-> and formatting X-Git-Tag: 4.99.1~349 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=648cc13845c4bb212460e4960896a0541e5b8b59;p=staging%2Fwindowmanager.git wayland: minor fix with this-> and formatting Signed-off-by: Marcus Fritzsch --- diff --git a/src/wayland.cpp b/src/wayland.cpp index c19b0dc..b4f4800 100644 --- a/src/wayland.cpp +++ b/src/wayland.cpp @@ -53,8 +53,9 @@ constexpr struct wl_registry_listener registry_listener = { } registry::registry(struct wl_display *d) - : wayland_proxy(wl_display_get_registry(d)) { - wl_registry_add_listener(this->proxy, ®istry_listener, this); + : wayland_proxy(!d ? nullptr : wl_display_get_registry(d)) { + if (this->proxy) + wl_registry_add_listener(this->proxy, ®istry_listener, this); } registry::~registry() { diff --git a/src/wayland.hpp b/src/wayland.hpp index c97c51a..afebe92 100644 --- a/src/wayland.hpp +++ b/src/wayland.hpp @@ -27,7 +27,7 @@ struct wayland_proxy { // custom wayland dtor if (this->proxy) { logdebug("%s %p @ %p", __func__, this, this->proxy); - wl_proxy_destroy(reinterpret_cast(proxy)); + wl_proxy_destroy(reinterpret_cast(this->proxy)); } } };