aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-04-25 01:18:16 -0400
committerNick Mathewson <nickm@torproject.org>2014-04-25 01:18:16 -0400
commit5470795b834a788ec482f22091d58b27a1999a2d (patch)
treed131f346afc43b58c2cc1c1d909e9bd988095db5 /changes
parent3b1f7f75a7efa51ae5549a6413e90066cfe307a8 (diff)
downloadtor-5470795b834a788ec482f22091d58b27a1999a2d.tar
tor-5470795b834a788ec482f22091d58b27a1999a2d.tar.gz
Changes file for scan-build fixes (#8793)
Diffstat (limited to 'changes')
-rw-r--r--changes/bug87939
1 files changed, 9 insertions, 0 deletions
diff --git a/changes/bug8793 b/changes/bug8793
new file mode 100644
index 000000000..f22c47403
--- /dev/null
+++ b/changes/bug8793
@@ -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.