Issue #17016: Get rid of possible pointer wraparounds and integer overflows
in the re module. Patch by Nickolai Zeldovich.
diff --git a/Misc/ACKS b/Misc/ACKS
index 7382dec..12c2172 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1344,6 +1344,7 @@
Artur Zaprzala
Mike Zarnstorff
Siebren van der Zee
+Nickolai Zeldovich
Yuxiao Zeng
Uwe Zessin
Cheng Zhang
diff --git a/Misc/NEWS b/Misc/NEWS
index 4fd149a..7218747 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@
Library
-------
+- Issue #17016: Get rid of possible pointer wraparounds and integer overflows
+ in the re module. Patch by Nickolai Zeldovich.
+
- Issue #16658: add missing return to HTTPConnection.send()
Patch by Jeff Knupp.