commit 08e65ce04fbc68389095c627ae752a9784f5739a Author: Nick Mathewson nickm@torproject.org Date: Tue Jul 24 10:20:00 2012 -0400
Fix small memleak introduced in recent patch; fixe 6455. --- src/or/config.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/or/config.c b/src/or/config.c index 0271cfd..281c458 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -4025,7 +4025,7 @@ options_validate(or_options_t *old_options, or_options_t *options, log_notice(LD_GENERAL, "Tor is not configured as a relay but you specified" " a ServerTransportPlugin line (%s). The ServerTransportPlugin " "line will be ignored.", - esc_for_log(options->ServerTransportPlugin->value)); + escaped(options->ServerTransportPlugin->value)); }
if (options->ConstrainedSockets) {
tor-commits@lists.torproject.org