diff options
Diffstat (limited to 'x11/modular-xorg-server112/patches/patch-include_dix.h')
-rw-r--r-- | x11/modular-xorg-server112/patches/patch-include_dix.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/x11/modular-xorg-server112/patches/patch-include_dix.h b/x11/modular-xorg-server112/patches/patch-include_dix.h new file mode 100644 index 00000000000..eb34262266a --- /dev/null +++ b/x11/modular-xorg-server112/patches/patch-include_dix.h @@ -0,0 +1,21 @@ +$NetBSD: patch-include_dix.h,v 1.1 2015/04/03 09:46:18 tnn Exp $ + +X.Org Security Advisory: Dec. 9, 2014 +Protocol handling issues in X Window System servers + +--- include/dix.h.orig 2012-05-17 17:09:04.000000000 +0000 ++++ include/dix.h +@@ -72,8 +72,13 @@ SOFTWARE. + if ((sizeof(req) >> 2) > client->req_len )\ + return(BadLength) + ++#define REQUEST_AT_LEAST_EXTRA_SIZE(req, extra) \ ++ if (((sizeof(req) + ((uint64_t) extra)) >> 2) > client->req_len ) \ ++ return(BadLength) ++ + #define REQUEST_FIXED_SIZE(req, n)\ + if (((sizeof(req) >> 2) > client->req_len) || \ ++ (((n) >> 2) >= client->req_len) || \ + (((sizeof(req) + (n) + 3) >> 2) != client->req_len)) \ + return(BadLength) + |