mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
idle-monitor: avoid XSyncBadAlarm X error
If we fail to find the IDLETIME counter, then the alarm variable will be uninitialised. Most code paths are careful to check this before submitting XSync calls, but there is one check missing. https://bugzilla.gnome.org/show_bug.cgi?id=724364
This commit is contained in:
parent
28d2f36b72
commit
d59472bb6b
@ -537,7 +537,7 @@ make_watch (MetaIdleMonitor *monitor,
|
|||||||
watch->timeout_source = source;
|
watch->timeout_source = source;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else if (monitor->user_active_alarm != None)
|
||||||
{
|
{
|
||||||
if (timeout_msec != 0)
|
if (timeout_msec != 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user