X-Git-Url: https://git.piment-noir.org/?p=deb_xorg-server.git;a=blobdiff_plain;f=debian%2Fpatches%2FCVE-2014-8xxx%2F0003-dix-integer-overflow-in-GetHosts-CVE-2014-8092-2-4.patch;h=ecc8aed1de3a7b15b9a71bac856397478954ad52;hp=d5f2d758a8c7ef56d8fcebf659b88aa8a8ecab9a;hb=4db25562fe97995f20b8adc0f2e6959ed82e8635;hpb=7217e0ca50bba73dad94782e67980aeeb24ab693 diff --git a/debian/patches/CVE-2014-8xxx/0003-dix-integer-overflow-in-GetHosts-CVE-2014-8092-2-4.patch b/debian/patches/CVE-2014-8xxx/0003-dix-integer-overflow-in-GetHosts-CVE-2014-8092-2-4.patch index d5f2d75..ecc8aed 100644 --- a/debian/patches/CVE-2014-8xxx/0003-dix-integer-overflow-in-GetHosts-CVE-2014-8092-2-4.patch +++ b/debian/patches/CVE-2014-8xxx/0003-dix-integer-overflow-in-GetHosts-CVE-2014-8092-2-4.patch @@ -21,11 +21,9 @@ Reviewed-by: Peter Hutterer os/access.c | 6 ++++++ 1 file changed, 6 insertions(+) -Index: xorg-server-1.16.0/os/access.c -=================================================================== ---- xorg-server-1.16.0.orig/os/access.c 2014-12-04 11:11:43.752542885 -0500 -+++ xorg-server-1.16.0/os/access.c 2014-12-04 11:11:43.748542843 -0500 -@@ -1323,6 +1323,10 @@ +--- a/os/access.c ++++ b/os/access.c +@@ -1323,6 +1323,10 @@ GetHosts(pointer *data, int *pnHosts, in for (host = validhosts; host; host = host->next) { nHosts++; n += pad_to_int32(host->len) + sizeof(xHostEntry); @@ -36,7 +34,7 @@ Index: xorg-server-1.16.0/os/access.c } if (n) { *data = ptr = malloc(n); -@@ -1331,6 +1335,8 @@ +@@ -1331,6 +1335,8 @@ GetHosts(pointer *data, int *pnHosts, in } for (host = validhosts; host; host = host->next) { len = host->len;