mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-02-18 00:10:32 +01:00
Bug #8875: Security extension causes Xorg to core dump on server reset
This commit is contained in:
parent
aa0261a98e
commit
0539d9cf24
1 changed files with 4 additions and 2 deletions
|
|
@ -1122,8 +1122,10 @@ CALLBACK(SecurityClientStateCallback)
|
|||
switch (client->clientState)
|
||||
{
|
||||
case ClientStateInitial:
|
||||
TRUSTLEVEL(serverClient) = XSecurityClientTrusted;
|
||||
AUTHID(serverClient) = None;
|
||||
if (client == serverClient) {
|
||||
TRUSTLEVEL(serverClient) = XSecurityClientTrusted;
|
||||
AUTHID(serverClient) = None;
|
||||
}
|
||||
break;
|
||||
|
||||
case ClientStateRunning:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue