]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Changes file for scan-build fixes (#8793)
authorNick Mathewson <nickm@torproject.org>
Fri, 25 Apr 2014 05:18:16 +0000 (01:18 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 25 Apr 2014 05:18:16 +0000 (01:18 -0400)
changes/bug8793 [new file with mode: 0644]

diff --git a/changes/bug8793 b/changes/bug8793
new file mode 100644 (file)
index 0000000..f22c474
--- /dev/null
@@ -0,0 +1,9 @@
+  o Minor bugfixes:
+    - Fix numerous warnings from the clang "scan-build" static analyzer.
+      Some of these are programming style issues; some of them are false
+      positives that indicated awkward code; some are undefined behavior
+      cases related to constructing (but not using) invalid pointers;
+      some are assumptions about API behavior; some are using
+      sizeof(ptr) when sizeof(*ptr) would be correct; and one or two are
+      genuine bugs that weren't reachable from the rest of the
+      program. Fixes bug 8793; bugfixes on many, many tor versions.