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

Downgrade tor_assert(0) to tor_fragile_assert() in windows stub create_unix_sockaddr

parent 7f45ea5c
No related branches found
No related tags found
No related merge requests found
......@@ -778,7 +778,7 @@ create_unix_sockaddr(const char *listenaddress, char **readable_address,
log_fn(LOG_ERR, LD_BUG,
"Unix domain sockets not supported, yet we tried to create one.");
*len_out = 0;
tor_assert(0);
tor_fragile_assert();
return NULL;
}
#endif /* HAVE_SYS_UN_H */
......
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