mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-29 22:48:30 +00:00
X11: Check for invalid opcodes in SHM error handler
This commit is contained in:
@@ -33,7 +33,7 @@ static int shm_error;
|
|||||||
static int (*X_handler)(Display *, XErrorEvent *) = NULL;
|
static int (*X_handler)(Display *, XErrorEvent *) = NULL;
|
||||||
static int shm_errhandler(Display *d, XErrorEvent *e)
|
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;
|
shm_error = True;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user