X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=net-dns%2Fdjbdns%2Ffiles%2FCVE2009-0858_0001-check-response-domain-name-length.patch;fp=net-dns%2Fdjbdns%2Ffiles%2FCVE2009-0858_0001-check-response-domain-name-length.patch;h=0000000000000000000000000000000000000000;hb=a5130c208f29b295e61610f0dbcb7d5dc9f5fa47;hp=23d8e9f86b12515cea712f64665dca529174dfea;hpb=11b01ca39711632b1ccc4070d516af238b73292d;p=mjo-overlay.git diff --git a/net-dns/djbdns/files/CVE2009-0858_0001-check-response-domain-name-length.patch b/net-dns/djbdns/files/CVE2009-0858_0001-check-response-domain-name-length.patch deleted file mode 100644 index 23d8e9f..0000000 --- a/net-dns/djbdns/files/CVE2009-0858_0001-check-response-domain-name-length.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/response.c -+++ b/response.c -@@ -34,7 +34,7 @@ int response_addname(const char *d) - uint16_pack_big(buf,49152 + name_ptr[i]); - return response_addbytes(buf,2); - } -- if (dlen <= 128) -+ if ((dlen <= 128) && (response_len < 16384)) - if (name_num < NAMES) { - byte_copy(name[name_num],dlen,d); - name_ptr[name_num] = response_len;