about: wasn't working. is now.

This commit is contained in:
danm%netscape.com 1998-09-03 01:02:27 +00:00
Родитель 7e3d112815
Коммит 872c8f58c8
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -2385,7 +2385,8 @@ PUBLIC void *FE_AboutData (const char *which, char **data_ret, int32 *length_ret
{
a = (char *)malloc(strlen(pSp) + strlen(pSSLString) + strlen(csVersion) * 2 + 48);
sprintf(a, pSp, (const char *)csVersion, (const char *)csVersion, pSSLString);
}
} else
a = strdup(pSp);
/* Free string space if allocated */
if (pSSLString) free(pSSLString);