Merge pull request #6268 from erikd/topic/fixes
Minor fixes reported by AddressSanitizer
This commit is contained in:
commit
cd403562cd
|
@ -2,6 +2,7 @@ config.h
|
|||
.DS_Store
|
||||
*.pyc
|
||||
*.o
|
||||
*.a
|
||||
*~
|
||||
\.*.swp
|
||||
*build-gui-Desktop_Qt*
|
||||
|
@ -20,3 +21,6 @@ src/gui/.rnd
|
|||
src/setup/win32/synergy.suo
|
||||
CMakeCache.txt
|
||||
CMakeLists.txt.user
|
||||
Makefile
|
||||
cmake_install.cmake
|
||||
CMakeFiles/
|
||||
|
|
|
@ -150,6 +150,7 @@ ArchMultithreadPosix::~ArchMultithreadPosix()
|
|||
|
||||
closeMutex(m_threadMutex);
|
||||
s_instance = nullptr;
|
||||
delete m_mainThread;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -175,7 +175,7 @@ App::initApp(int argc, const char** argv)
|
|||
// this is a simple way to allow the core process to talk to X. this avoids
|
||||
// the "WARNING: primary screen unavailable: unable to open screen" error.
|
||||
// a better way would be to use xauth cookie and dbus to get access to X.
|
||||
if (static_cast<int>((!(argsBase().m_runAsUid) == 0 != -1))) {
|
||||
if (argsBase().m_runAsUid >= 0) {
|
||||
if (setuid(argsBase().m_runAsUid) == 0) {
|
||||
LOG((CLOG_DEBUG "process uid was set to: %d", argsBase().m_runAsUid));
|
||||
}
|
||||
|
|
|
@ -27,10 +27,6 @@ m_stopOnDeskSwitch(false),
|
|||
#else
|
||||
m_daemon(true), // backward compatibility for unix (daemon by default)
|
||||
#endif
|
||||
#if WINAPI_XWINDOWS
|
||||
m_disableXInitThreads(false),
|
||||
m_runAsUid(-1),
|
||||
#endif
|
||||
m_backend(false),
|
||||
m_restartable(true),
|
||||
m_noHooks(false),
|
||||
|
@ -39,6 +35,10 @@ m_logFilter(nullptr),
|
|||
m_logFile(nullptr),
|
||||
m_display(nullptr),
|
||||
m_enableDragDrop(false),
|
||||
#if WINAPI_XWINDOWS
|
||||
m_disableXInitThreads(false),
|
||||
m_runAsUid(-1),
|
||||
#endif
|
||||
m_shouldExit(false),
|
||||
m_profileDirectory(""),
|
||||
m_pluginDirectory("")
|
||||
|
|
|
@ -54,10 +54,10 @@ class EventQueueTimer { };
|
|||
|
||||
XWindowsEventQueueBuffer::XWindowsEventQueueBuffer(
|
||||
Display* display, Window window, IEventQueue* events) :
|
||||
m_events(events),
|
||||
m_display(display),
|
||||
m_window(window),
|
||||
m_waiting(false)
|
||||
m_waiting(false),
|
||||
m_events(events)
|
||||
{
|
||||
assert(m_display != NULL);
|
||||
assert(m_window != None);
|
||||
|
|
|
@ -97,6 +97,7 @@ XWindowsScreen::XWindowsScreen(
|
|||
bool disableXInitThreads,
|
||||
int mouseScrollDelta,
|
||||
IEventQueue* events) :
|
||||
PlatformScreen(events),
|
||||
m_isPrimary(isPrimary),
|
||||
m_mouseScrollDelta(mouseScrollDelta),
|
||||
m_display(nullptr),
|
||||
|
@ -121,8 +122,7 @@ XWindowsScreen::XWindowsScreen(
|
|||
m_xkb(false),
|
||||
m_xi2detected(false),
|
||||
m_xrandr(false),
|
||||
m_events(events),
|
||||
PlatformScreen(events)
|
||||
m_events(events)
|
||||
{
|
||||
assert(s_screen == NULL);
|
||||
|
||||
|
@ -1415,8 +1415,8 @@ XWindowsScreen::handleSystemEvent(const Event& event, void* /*unused*/)
|
|||
|
||||
#if HAVE_X11_EXTENSIONS_XRANDR_H
|
||||
if (m_xrandr) {
|
||||
if (xevent->type == m_xrandrEventBase + RRScreenChangeNotify
|
||||
|| xevent->type == m_xrandrEventBase + RRNotify
|
||||
if ((xevent->type == m_xrandrEventBase + RRScreenChangeNotify
|
||||
|| xevent->type == m_xrandrEventBase + RRNotify)
|
||||
&& reinterpret_cast<XRRNotifyEvent *>(xevent)->subtype == RRNotify_CrtcChange) {
|
||||
LOG((CLOG_INFO "XRRScreenChangeNotifyEvent or RRNotify_CrtcChange received"));
|
||||
|
||||
|
|
Loading…
Reference in New Issue