summaryrefslogtreecommitdiffstats
path: root/bind-9.5-overflow.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 /bind-9.5-overflow.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 'bind-9.5-overflow.patch')
-rw-r--r--bind-9.5-overflow.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/bind-9.5-overflow.patch b/bind-9.5-overflow.patch
deleted file mode 100644
index 34b7bed..0000000
--- a/bind-9.5-overflow.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -up bind-9.5.0a5/lib/isc/pthreads/condition.c.overflow bind-9.5.0a5/lib/isc/pthreads/condition.c
---- bind-9.5.0a5/lib/isc/pthreads/condition.c.overflow 2007-07-17 07:53:59.000000000 +0200
-+++ bind-9.5.0a5/lib/isc/pthreads/condition.c 2007-07-17 07:55:08.000000000 +0200
-@@ -43,7 +43,7 @@ isc_condition_waituntil(isc_condition_t
- * POSIX defines a timespec's tv_sec as time_t.
- */
- result = isc_time_secondsastimet(t, &ts.tv_sec);
-- if (result != ISC_R_SUCCESS)
-+ if (result != ISC_R_RANGE && result != ISC_R_SUCCESS)
- return (result);
-
- /*!
-diff -up bind-9.5.0a5/lib/isc/unix/time.c.overflow bind-9.5.0a5/lib/isc/unix/time.c
---- bind-9.5.0a5/lib/isc/unix/time.c.overflow 2007-02-14 01:27:27.000000000 +0100
-+++ bind-9.5.0a5/lib/isc/unix/time.c 2007-07-17 07:53:08.000000000 +0200
-@@ -379,6 +379,9 @@ isc_time_secondsastimet(const isc_time_t
- * (Let's hope the compiler got the actual test right.)
- */
- UNUSED(i);
-+
-+ /* Means that t->seconds > maximum value in time_t and we have int time_t */
-+ seconds = INT_MAX;
- return (ISC_R_RANGE);
- }