]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Add a changelog for the STACK fixes
authorNick Mathewson <nickm@torproject.org>
Sun, 26 Nov 2017 22:37:36 +0000 (17:37 -0500)
committerNick Mathewson <nickm@torproject.org>
Mon, 11 Dec 2017 21:23:11 +0000 (16:23 -0500)
changes/stack [new file with mode: 0644]

diff --git a/changes/stack b/changes/stack
new file mode 100644 (file)
index 0000000..ffdf536
--- /dev/null
@@ -0,0 +1,7 @@
+  o Minor bugfixes (correctness):
+    - Fix several places in our codebase where a C compiler would be likely
+      to eliminate a check, based on assuming that undefined behavior had not
+      happened elsewhere in the code.  These cases are usually a sign of
+      redundant checking, or dubious arithmetic. Found by Georg Koppen using
+      the "STACK" tool from Wang, Zeldovich, Kaashoek, and
+      Solar-Lezama. Fixes bug 24423; bugfix on various Tor versions.