diff options
Diffstat (limited to 'src/common/util.c')
-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 5f7a6017d..333cd65e6 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -21,7 +21,7 @@ void *tor_malloc(size_t size) { log_fn(LOG_ERR, "Out of memory. Dying."); exit(1); } - memset(result,'X',size); /* XXX deadbeef to encourage bugs */ +// memset(result,'X',size); /* deadbeef to encourage bugs */ return result; } |