bugfix: initialize tor to NULL
This commit is contained in:
parent
2f65b2adaa
commit
5df66a2212
1 changed files with 1 additions and 1 deletions
2
main.cpp
2
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"
|
||||
|
|
Loading…
Reference in a new issue