diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-11-08 18:44:06 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-11-08 18:44:06 -0500 |
commit | 286fa94064dcc6d1b260bec77de052274e3c4403 (patch) | |
tree | e013b14f0c604f10af6751016ddb96bb29d04b04 /changes/bug20560 | |
parent | 74e84b7eb7ecde8aaa195a7388af0d8dde5df8a9 (diff) | |
download | tor-286fa94064dcc6d1b260bec77de052274e3c4403.tar.gz tor-286fa94064dcc6d1b260bec77de052274e3c4403.zip |
Use va_copy() in pure-windows version of tor_asprintf().
It's not okay to use the same varargs list twice, and apparently
some windows build environments produce code here that would leave
tor_asprintf() broken. Fix for bug 20560; bugfix on 0.2.2.11-alpha
when tor_asprintf() was introduced.
Diffstat (limited to 'changes/bug20560')
-rw-r--r-- | changes/bug20560 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug20560 b/changes/bug20560 new file mode 100644 index 0000000000..43d605b296 --- /dev/null +++ b/changes/bug20560 @@ -0,0 +1,4 @@ + o Minor bugfixes (portability): + - Run correctly when built on Windows build environments that require + _vcsprintf(). Fixes bug 20560; bugfix on 0.2.2.11-alpha. + |