зеркало из https://github.com/mozilla/pjs.git
D'oh, correctly size buffer for terminating '0' in fe_GetConfigDir.
Change in code that is XP_BEOS only.
This commit is contained in:
Родитель
23108068cb
Коммит
192cb60ca2
|
@ -1733,7 +1733,7 @@ char *fe_GetConfigDir(void)
|
|||
char *config_dir;
|
||||
|
||||
int len = strlen(path);
|
||||
len += strlen("/mozilla");
|
||||
len += strlen("/mozilla") + 1;
|
||||
|
||||
config_dir = (char *)XP_CALLOC(len, sizeof(char));
|
||||
/* we really should use XP_STRN*_SAFE but this is MODULAR_NETLIB */
|
||||
|
|
Загрузка…
Ссылка в новой задаче