This commit is contained in:
ramiro%netscape.com 1999-02-11 23:03:25 +00:00
Родитель fa7f88ef3e
Коммит 5488848d0a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -127,7 +127,7 @@ char *fe_GetConfigDir(void) {
len += strlen("/") + strlen(MOZ_USER_DIR) + 1;
config_dir = (char *)XP_CALLOC(len, sizeof(char));
// we really should use XP_STRN*_SAFE but this is MODULAR_NETLIB
/* we really should use XP_STRN*_SAFE but this is MODULAR_NETLIB */
XP_STRCPY(config_dir, home);
XP_STRCAT(config_dir, "/");
XP_STRCAT(config_dir, MOZ_USER_DIR);