aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-12-19 16:51:53 -0500
committerNick Mathewson <nickm@torproject.org>2013-01-16 22:29:39 -0500
commitb7cf7bd9ae31aeddd03ad2094dd480d2b1d34d4f (patch)
tree86b0e53db9405747d9e4cc1a0866db9ff9c194c6 /changes
parent65b90edbe4f456ee59c163e72bc75e522c4e9288 (diff)
downloadtor-b7cf7bd9ae31aeddd03ad2094dd480d2b1d34d4f.tar
tor-b7cf7bd9ae31aeddd03ad2094dd480d2b1d34d4f.tar.gz
Fix an instance of snprintf; don't use _snprintf directly
Diffstat (limited to 'changes')
-rw-r--r--changes/73047
1 files changed, 7 insertions, 0 deletions
diff --git a/changes/7304 b/changes/7304
new file mode 100644
index 000000000..bfb797b10
--- /dev/null
+++ b/changes/7304
@@ -0,0 +1,7 @@
+ o Minor bugfixes:
+ - Replace all calls to snprintf outside of src/ext with tor_snprintf.
+ Fix for bug 7304.
+ o Code simplification and refactoring:
+ - Remove the #define to replace snprintf with _snprintf on windows;
+ they have different semantics, and all of our callers should be
+ using tor_snprintf anyway. Partial fix for bug 7304.