diff options
author | marha <marha@users.sourceforge.net> | 2011-05-09 09:35:45 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-05-09 09:35:45 +0000 |
commit | 43b2398ee28e9144fd51eb9994d67c4c9a198c9c (patch) | |
tree | af05c516b61241b6444059697ce94eee092ba8ff /libX11/include | |
parent | 151019725213fc50a8aa4db8c4524387fea8f476 (diff) | |
download | vcxsrv-43b2398ee28e9144fd51eb9994d67c4c9a198c9c.tar.gz vcxsrv-43b2398ee28e9144fd51eb9994d67c4c9a198c9c.tar.bz2 vcxsrv-43b2398ee28e9144fd51eb9994d67c4c9a198c9c.zip |
libXext libX11 mkfontscale mesa git update 9 May 2011
Diffstat (limited to 'libX11/include')
-rw-r--r-- | libX11/include/X11/Xlibint.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libX11/include/X11/Xlibint.h b/libX11/include/X11/Xlibint.h index 3266e0d00..ce3d25fab 100644 --- a/libX11/include/X11/Xlibint.h +++ b/libX11/include/X11/Xlibint.h @@ -572,6 +572,7 @@ extern LockInfoPtr _Xglobal_lock; #endif #endif +#ifndef __clang_analyzer__ #define SetReqLen(req,n,badlen) \ if ((req->length + n) > (unsigned)65535) { \ if (dpy->bigreq_size) { \ @@ -582,6 +583,10 @@ extern LockInfoPtr _Xglobal_lock; } \ } else \ req->length += n +#else +#define SetReqLen(req,n,badlen) \ + req->length += n +#endif #define SyncHandle() \ if (dpy->synchandler) (*dpy->synchandler)(dpy) |