aboutsummaryrefslogtreecommitdiff
path: root/src/app/main/shutdown.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/main/shutdown.c')
-rw-r--r--src/app/main/shutdown.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app/main/shutdown.c b/src/app/main/shutdown.c
index 27d92609eb..aac15246b9 100644
--- a/src/app/main/shutdown.c
+++ b/src/app/main/shutdown.c
@@ -75,7 +75,8 @@ tor_cleanup(void)
/* Remove Extended ORPort cookie authentication file */
{
char *cookie_fname = get_ext_or_auth_cookie_file_name();
- tor_remove_file(cookie_fname);
+ if (cookie_fname)
+ tor_remove_file(cookie_fname);
tor_free(cookie_fname);
}
if (accounting_is_enabled(options))