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

Fix an uninitialized-variable warning.

parent 44e9dafb
No related branches found
No related tags found
No related merge requests found
......@@ -336,7 +336,7 @@ parse_port_config(const char *string)
{
smartlist_t *sl;
int virtport;
int realport;
int realport = 0;
uint16_t p;
tor_addr_t addr;
const char *addrport;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment