we should exit(1) if $HOME doesn't exist and we needed it

svn:r2344
This commit is contained in:
Roger Dingledine
2004-09-10 19:16:01 +00:00
parent b287509fb3
commit a475ccf5b8
+3
View File
@@ -1044,6 +1044,9 @@ const char *get_data_directory(or_options_t *options) {
}
if (d && strncmp(d,"~/",2)==0) {
char *fn = expand_filename(d);
if(!fn) {
/* XXX complain and exit(1) here */
}
tor_free(options->DataDirectory);
options->DataDirectory = fn;
}