diff options
author | Michael Joost <mehl@michael-joost.de> | 2013-11-18 16:11:26 +0100 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-11-22 23:18:01 -0800 |
commit | 48d2656fa1dd98e9d88b31211fa4f09f813e7b30 (patch) | |
tree | f886d39ea85e50e7c95519c6a520307136b4411e /src | |
parent | cdc04f06325e55916e0c95b61db626d22b76e2ff (diff) |
Remove fallback for _XEatDataWords, require libX11 1.6 for it
_XEatDataWords was orignally introduced with the May 2013 security
patches, and in order to ease the process of delivering those,
fallback versions of _XEatDataWords were included in the X extension
library patches so they could be applied to older versions that didn't
have libX11 1.6 yet. Now that we're past that hurdle, we can drop
the fallbacks and just require libX11 1.6 for building new versions
of the extension libraries.
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/XRecord.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/XRecord.c b/src/XRecord.c index 5bbd5ac..50420c0 100644 --- a/src/XRecord.c +++ b/src/XRecord.c @@ -61,17 +61,6 @@ from The Open Group. #include <X11/extensions/record.h> #include <limits.h> -#ifndef HAVE__XEATDATAWORDS -static inline void _XEatDataWords(Display *dpy, unsigned long n) -{ -# ifndef LONG64 - if (n >= (ULONG_MAX >> 2)) - _XIOError(dpy); -# endif - _XEatData (dpy, n << 2); -} -#endif - static XExtensionInfo _xrecord_info_data; static XExtensionInfo *xrecord_info = &_xrecord_info_data; static const char *xrecord_extension_name = RECORD_NAME; |