mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-06 14:43:20 +00:00
X11: Check for invalid opcodes in SHM error handler
This commit is contained in:
parent
387a2b924d
commit
b59d6d49c3
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ static int shm_error;
|
|||
static int (*X_handler)(Display *, XErrorEvent *) = NULL;
|
||||
static int shm_errhandler(Display *d, XErrorEvent *e)
|
||||
{
|
||||
if (e->error_code == BadAccess) {
|
||||
if (e->error_code == BadAccess || e->error_code == BadRequest) {
|
||||
shm_error = True;
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue