diff --git a/xserver-1.3.0-exaupgrade-fix-max-pixmap.patch b/xserver-1.3.0-exaupgrade-fix-max-pixmap.patch index 665af1a..7b48d4b 100644 --- a/xserver-1.3.0-exaupgrade-fix-max-pixmap.patch +++ b/xserver-1.3.0-exaupgrade-fix-max-pixmap.patch @@ -5,8 +5,8 @@ diff -up xorg-server-1.3.0.0/exa/exa.c.fix-pixmap-size xorg-server-1.3.0.0/exa/e pExaScr->info->pixmapPitchAlign); pExaPixmap->fb_size = pExaPixmap->fb_pitch * h; -- if (pExaPixmap->fb_pitch > 131071) { -+ if (pExaPixmap->fb_pitch > 32767) { +- if (pExaPixmap->fb_pitch > 32767) { ++ if (pExaPixmap->fb_pitch > 131071) { fbDestroyPixmap(pPixmap); return NULL; }