Skip to content
Snippets Groups Projects
Commit 36b2b483 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Merge branch 'bug18668_028' into maint-0.2.8

parents f2d614c3 0f9b0b8b
Branches
Tags
No related merge requests found
o Minor bugfixes (tests):
- Avoid "WSANOTINITIALISED" warnings in the unit tests. Fixes bug 18668;
bugfix on 0.2.8.1-alpha.
......@@ -242,6 +242,8 @@ main(int c, const char **v)
options = options_new();
tor_threads_init();
network_init();
struct tor_libevent_cfg cfg;
memset(&cfg, 0, sizeof(cfg));
tor_libevent_initialize(&cfg);
......@@ -284,7 +286,6 @@ main(int c, const char **v)
return 1;
}
rep_hist_init();
network_init();
setup_directory();
options_init(options);
options->DataDirectory = tor_strdup(temp_dir);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment