From 0bf51d99f6183f82b93eec5997060fdcf6e5bc4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Tue, 10 Nov 2015 14:27:43 +0100 Subject: [PATCH] [wayland] Destroy our internal wayland connection from server side More cleanup. --- wayland_server.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/wayland_server.cpp b/wayland_server.cpp index d8d216ab81..aa2bf07b72 100644 --- a/wayland_server.cpp +++ b/wayland_server.cpp @@ -84,6 +84,7 @@ void WaylandServer::destroyInternalConnection() m_internalConnection.clientThread->wait(); delete m_internalConnection.clientThread; m_internalConnection.client = nullptr; + m_internalConnection.server->destroy(); } }