Fixed free problem with getenv. Fixed leak for beos case. r=mcafee

This commit is contained in:
warren%netscape.com 2000-01-06 00:21:17 +00:00
Родитель 77d7904064
Коммит 025342a34a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -112,7 +112,6 @@ nsResProtocolHandler::Init()
char* path = PR_GetEnv("MOZILLA_FIVE_HOME");
if (path) {
char* fileURL = PR_smprintf("file:///%s", path);
PR_Free(path);
rv = AppendSubstitution("Resource", fileURL);
PR_Free(fileURL);
if (NS_FAILED(rv)) return rv;
@ -170,6 +169,7 @@ nsResProtocolHandler::Init()
char* fileURL = PR_smprintf("file:///%s", buf);
rv = AppendSubstitution("Resource", fileURL);
if (NS_FAILED(rv)) return rv;
PR_Free(fileURL);
#endif