rogue5: remove some NULLs.

This commit is contained in:
John "Elwin" Edwards 2010-06-15 20:49:22 +00:00
parent 53a15a3e2e
commit 00669593bd

View file

@ -485,10 +485,10 @@ md_gethomedir(void)
if (pw != NULL)
h = pw->pw_dir;
else
h = NULL;
h = "";
if (strcmp(h,"/") == 0)
h = NULL;
h = "";
#endif
homedir[0] = 0;
#ifdef _WIN32