зеркало из https://github.com/mozilla/gecko-dev.git
fixing freeing a non allocated ptr.
This commit is contained in:
Родитель
ba78e7bec4
Коммит
f7e3c0e981
|
@ -271,10 +271,11 @@ nsGREDirServiceProvider::GetXPCOMPath()
|
|||
{
|
||||
char* grePath = GetGREDirectoryPath();
|
||||
if (!grePath) {
|
||||
grePath = PR_GetEnv("MOZILLA_FIVE_HOME");
|
||||
if (!grePath) {
|
||||
char* greEnv = PR_GetEnv("MOZILLA_FIVE_HOME");
|
||||
if (!greEnv) {
|
||||
return nsnull;
|
||||
}
|
||||
grePath = strdup(greEnv);
|
||||
}
|
||||
|
||||
int len = strlen(grePath);
|
||||
|
|
Загрузка…
Ссылка в новой задаче