diff options
| author | Adam Tkac <atkac@fedoraproject.org> | 2007-08-14 09:43:25 +0000 |
|---|---|---|
| committer | Adam Tkac <atkac@fedoraproject.org> | 2007-08-14 09:43:25 +0000 |
| commit | 0827e93fa66272a2384bd7baa9cb1a625b387f16 (patch) | |
| tree | 1ef6ab2dced46d9501fe5f6b4e4f09505dd82e88 /bind-9.5-update.patch | |
| parent | b598411a0b8b0e0092a375de429c0555d3348879 (diff) | |
- named could crash with SRV record UPDATE (#251336)bind-9_5_0-9_1_a6_fc8
Diffstat (limited to 'bind-9.5-update.patch')
| -rw-r--r-- | bind-9.5-update.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bind-9.5-update.patch b/bind-9.5-update.patch new file mode 100644 index 0000000..80eeef6 --- /dev/null +++ b/bind-9.5-update.patch @@ -0,0 +1,15 @@ +diff -up bind-9.4.1-P1/lib/dns/message.c.update bind-9.4.1-P1/lib/dns/message.c +--- bind-9.4.1-P1/lib/dns/message.c.update 2007-08-14 10:53:25.000000000 +0200 ++++ bind-9.4.1-P1/lib/dns/message.c 2007-08-14 10:54:52.000000000 +0200 +@@ -1308,6 +1308,11 @@ getsection(isc_buffer_t *source, dns_mes + rdata->type = rdtype; + rdata->flags = DNS_RDATA_UPDATE; + result = ISC_R_SUCCESS; ++ } else if (rdclass == dns_rdataclass_none && ++ msg->opcode == dns_opcode_update && ++ sectionid == DNS_SECTION_UPDATE) { ++ result = getrdata(source, msg, dctx, msg->rdclass, ++ rdtype, rdatalen, rdata); + } else + result = getrdata(source, msg, dctx, rdclass, + rdtype, rdatalen, rdata); |
