diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-10-06 13:25:04 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-06-28 09:54:05 -0400 |
commit | d4285f03df475dccf2a7132e2a8808715f383c24 (patch) | |
tree | b13186c40bb616570de30df6cc8f507251888726 /changes/bug4195 | |
parent | e12eba55b27ec3ecf0dac586f1eb3adc4b373ca0 (diff) | |
download | tor-d4285f03df475dccf2a7132e2a8808715f383c24.tar tor-d4285f03df475dccf2a7132e2a8808715f383c24.tar.gz |
Extend tor_sscanf so it can replace sscanf in rephist.c
Fixes bug 4195 and Coverity CID 448
Diffstat (limited to 'changes/bug4195')
-rw-r--r-- | changes/bug4195 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/changes/bug4195 b/changes/bug4195 new file mode 100644 index 000000000..2e7a72487 --- /dev/null +++ b/changes/bug4195 @@ -0,0 +1,6 @@ + o Minor features: + - Enhance our internal sscanf replacement so that we can eliminate + the last remaining uses of the system sscanf. (Though those uses + of sscanf were safe, sscanf itself is generally error prone, so + we want to eliminate when we can.) Fixes ticket 4195 and Coverity + CID 448. |