summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-11-08 20:00:54 -0500
committerNick Mathewson <nickm@torproject.org>2012-11-08 20:00:54 -0500
commit08436b27ffba4094760fd1fe5321bbd255043b53 (patch)
tree8f0e357dc08e4e09f75373f7476cb0aac845398c /src/common
parente1c7d12b1d91eea98442b54f9de88a742d7ac86a (diff)
parente567b4482a1473f586a8549d9311d989c2335172 (diff)
downloadtor-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.c2
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);
}