summaryrefslogtreecommitdiffstats
path: root/bind99-coverity.patch
diff options
context:
space:
mode:
authorAdam Tkac <atkac@redhat.com>2012-05-24 14:50:55 +0200
committerAdam Tkac <atkac@redhat.com>2012-05-24 14:50:55 +0200
commit475645f00d4e16bc7c5cd6cb766816a24f3ad005 (patch)
tree47caaaa3e723bf097b47602ad2fb60f0f3a411ce /bind99-coverity.patch
parent341c7de50d7729bee4ef8f0863bc43f4fb415396 (diff)
downloadbind-475645f00d4e16bc7c5cd6cb766816a24f3ad005.tar.gz
bind-475645f00d4e16bc7c5cd6cb766816a24f3ad005.tar.xz
bind-475645f00d4e16bc7c5cd6cb766816a24f3ad005.zip
Update to 9.9.1
- bind99-coverity.patch merged - bind-9.5-overflow.patch merged Signed-off-by: Adam Tkac <atkac@redhat.com>
Diffstat (limited to 'bind99-coverity.patch')
-rw-r--r--bind99-coverity.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/bind99-coverity.patch b/bind99-coverity.patch
deleted file mode 100644
index ac8d5d1..0000000
--- a/bind99-coverity.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -up bind-9.9.0/bin/named/controlconf.c.coverity bind-9.9.0/bin/named/controlconf.c
---- bind-9.9.0/bin/named/controlconf.c.coverity 2012-03-05 13:57:37.665539706 +0100
-+++ bind-9.9.0/bin/named/controlconf.c 2012-03-05 14:15:15.981420790 +0100
-@@ -373,14 +373,9 @@ control_recvmessage(isc_task_t *task, is
- if (result == ISC_R_SUCCESS)
- break;
- isc_mem_put(listener->mctx, secret.rstart, REGION_SIZE(secret));
-- if (result == ISCCC_R_BADAUTH) {
-- /*
-- * For some reason, request is non-NULL when
-- * isccc_cc_fromwire returns ISCCC_R_BADAUTH.
-- */
-- if (request != NULL)
-- isccc_sexpr_free(&request);
-- } else {
-+ /* request can be non-NULL even in failure case */
-+ isccc_sexpr_free(&request);
-+ if (result != ISCCC_R_BADAUTH) {
- log_invalid(&conn->ccmsg, result);
- goto cleanup;
- }