зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1553039 - default MOZ_GCTIMER output dir to MOZ_UPLOAD_DIR r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D31962 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
aa9c7b4e7e
Коммит
dcfb7afeb3
|
@ -104,8 +104,18 @@ static FILE* MaybeOpenFileFromEnv(const char* env) {
|
|||
} else if (strcmp(value, "stderr") == 0) {
|
||||
file = stderr;
|
||||
} else {
|
||||
char path[300];
|
||||
if (value[0] != '/') {
|
||||
const char* dir = getenv("MOZ_UPLOAD_DIR");
|
||||
if (dir) {
|
||||
SprintfLiteral(path, "%s/%s", dir, value);
|
||||
value = path;
|
||||
}
|
||||
}
|
||||
|
||||
file = fopen(value, "a");
|
||||
if (!file) {
|
||||
perror("opening log file");
|
||||
MOZ_CRASH("Failed to open log file.");
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче