158054 patch by ajschult@eos.ncsu.edu r=sgehani sr=dveditz a=sspitzer unix installer crashes if Title not defined in config.ini

This commit is contained in:
cbiesinger%web.de 2003-04-25 11:19:42 +00:00
Родитель 2918d030b3
Коммит 448cd1b8d5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -372,7 +372,7 @@ nsXInstaller::ParseGeneral(nsINIParser *aParser)
else
{
err = OK; /* optional so no error if we didn't find it */
strcpy(gCtx->opt->mTitle, gCtx->Res("DEFAULT_TITLE"));
gCtx->opt->mTitle = strdup(gCtx->Res("DEFAULT_TITLE"));
}
return err;