]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Changes file for bug 29527
authorteor <teor@torproject.org>
Wed, 20 Mar 2019 08:07:00 +0000 (18:07 +1000)
committerteor <teor@torproject.org>
Wed, 20 Mar 2019 08:07:00 +0000 (18:07 +1000)
The previous commit introduces these changes:

Stop warning about undefined behavior in the probability distribution
tests. Float division by zero may technically be undefined behaviour in
C, but it's well-defined in IEEE 754.

Partial backport of 29298.

Closes ticket 29527; bugfix on 0.4.0.1-alpha.

changes/bug29527 [new file with mode: 0644]

diff --git a/changes/bug29527 b/changes/bug29527
new file mode 100644 (file)
index 0000000..6f36a9e
--- /dev/null
@@ -0,0 +1,5 @@
+  o Minor features (circuit padding):
+    - Stop warning about undefined behavior in the probability distribution
+      tests. Float division by zero may technically be undefined behaviour in
+      C, but it's well-defined in IEEE 754. Partial backport of 29298.
+      Closes ticket 29527; bugfix on 0.4.0.1-alpha.