diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-11-08 20:00:54 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-11-08 20:00:54 -0500 |
commit | 08436b27ffba4094760fd1fe5321bbd255043b53 (patch) | |
tree | 8f0e357dc08e4e09f75373f7476cb0aac845398c /src/common | |
parent | e1c7d12b1d91eea98442b54f9de88a742d7ac86a (diff) | |
parent | e567b4482a1473f586a8549d9311d989c2335172 (diff) | |
download | tor-08436b27ffba4094760fd1fe5321bbd255043b53.tar.gz tor-08436b27ffba4094760fd1fe5321bbd255043b53.zip |
Merge remote-tracking branch 'origin/maint-0.2.3'
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c index 13f1b1e075..1b0603a469 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -4014,7 +4014,7 @@ tor_process_handle_destroy(process_handle_t *process_handle, fclose(process_handle->stderr_handle); #endif - memwipe(process_handle, 0x0f, sizeof(process_handle_t)); + memset(process_handle, 0x0f, sizeof(process_handle_t)); tor_free(process_handle); } |