aboutsummaryrefslogtreecommitdiff
path: root/src/or/ntmain.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-05-17 10:08:48 -0400
committerNick Mathewson <nickm@torproject.org>2012-06-07 11:09:38 -0400
commit1e5683b167a612bf76d4ae9ba508027e0d473e52 (patch)
tree5bd336b4f17411122c8ddb152324f8c2922d4d6e /src/or/ntmain.c
parent99618a9641d02b7b99a79c71517203bb70043515 (diff)
downloadtor-1e5683b167a612bf76d4ae9ba508027e0d473e52.tar
tor-1e5683b167a612bf76d4ae9ba508027e0d473e52.tar.gz
Be more careful calling wcstombs
The function is not guaranteed to NUL-terminate its output. It *is*, however, guaranteed not to generate more than two bytes per multibyte character (plus terminating nul), so the general approach I'm taking is to try to allocate enough space, AND to manually add a NUL at the end of each buffer just in case I screwed up the "enough space" thing. Fixes bug 5909.
Diffstat (limited to 'src/or/ntmain.c')
-rw-r--r--src/or/ntmain.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/ntmain.c b/src/or/ntmain.c
index 01244c4c0..d001f7be1 100644
--- a/src/or/ntmain.c
+++ b/src/or/ntmain.c
@@ -455,7 +455,7 @@ static char *
nt_service_command_line(int *using_default_torrc)
{
TCHAR tor_exe[MAX_PATH+1];
- char tor_exe_ascii[MAX_PATH+1];
+ char tor_exe_ascii[MAX_PATH*2+1];
char *command=NULL, *options=NULL;
smartlist_t *sl;
int i;
@@ -483,6 +483,7 @@ nt_service_command_line(int *using_default_torrc)
#ifdef UNICODE
wcstombs(tor_exe_ascii, tor_exe, sizeof(tor_exe_ascii));
+ tor_exe_ascii[sizeof(tor_exe_ascii)-1] = '\0';
#else
strlcpy(tor_exe_ascii, tor_exe, sizeof(tor_exe_ascii));
#endif