From 5df66a2212c530dc9a0ff5265c735b7c2695366b Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 13 Apr 2013 21:34:57 +0200 Subject: [PATCH] bugfix: initialize tor to NULL --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index e57380c..ce9064a 100644 --- a/main.cpp +++ b/main.cpp @@ -25,7 +25,7 @@ public: const char *host; const char *tor; - CDnsSeedOpts() : nThreads(24), nDnsThreads(24), nPort(53), mbox(NULL), ns(NULL), host(NULL) {} + CDnsSeedOpts() : nThreads(24), nDnsThreads(24), nPort(53), mbox(NULL), ns(NULL), host(NULL), tor(NULL) {} void ParseCommandLine(int argc, char **argv) { static const char *help = "Bitcoin-seeder\n"