summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2018-02-08 21:36:43 +0100
committerFrancis Dupont <fdupont@isc.org>2018-02-08 21:36:43 +0100
commite017e66ef54c897c0212a7c99540fdddd1c7a4eb (patch)
tree9a6c0efa53454a729e0a883875c3d81dc13fdb67
parent70eb0aede2afe30c5d1525eed8af3b217f34331f (diff)
downloadisc-dhcp-rt47140.tar.gz
Removed debug - updated RELNOTESrt47140
-rw-r--r--RELNOTES10
-rw-r--r--common/tests/option_unittest.c1
2 files changed, 10 insertions, 1 deletions
diff --git a/RELNOTES b/RELNOTES
index 0a1f9b45..be1c9704 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -87,6 +87,16 @@ ISC DHCP is open source software maintained by Internet Systems
Consortium. This product includes cryptographic software written
by Eric Young (eay@cryptsoft.com).
+ Changes since 4.4.0 (Bug Fixes)
+
+- <placeholder for delayed-ack>
+- <placeholder for 47139>
+
+- Option reference count was not correctly decremented in error path
+ when parsing buffer for options. Reported by Felix Wilhelm, Google
+ Security Team.
+ [ISC-Bugs #47140]
+
Changes since 4.4.0b1 (New Features)
- Duplicate address detection when binding to a new IPv6 address was added
diff --git a/common/tests/option_unittest.c b/common/tests/option_unittest.c
index 83e05689..36236b84 100644
--- a/common/tests/option_unittest.c
+++ b/common/tests/option_unittest.c
@@ -54,7 +54,6 @@ ATF_TC_BODY(option_refcnt, tc)
atf_tc_fail("option is NULL");
}
refcnt = option->refcnt;
- fprintf(stderr, "refcnt is %d\n", refcnt);
buffer[0] = 15;
buffer[1] = 255; /* invalid */