Merged PR 667384: [libDetours] Don't crash if no FileAccessManifest is specified

[libDetours] Don't crash if no FileAccessManifest is specified
This commit is contained in:
Aleksandar Milicevic 2022-06-22 00:11:37 +00:00
Родитель 51d1773858
Коммит 72f694af34
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -233,7 +233,7 @@ private:
ssize_t read_path_for_fd(int fd, char *buf, size_t bufsiz);
bool IsMonitoringChildProcesses() const { return CheckMonitorChildProcesses(pip_->GetFamFlags()); }
bool IsMonitoringChildProcesses() const { return !pip_ || CheckMonitorChildProcesses(pip_->GetFamFlags()); }
inline bool IsValid() const { return sandbox_ != NULL; }
inline bool IsEnabled() const
{

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

@ -4605,7 +4605,7 @@
"Type": "NuGet",
"NuGet": {
"Name": "runtime.linux-x64.BuildXL",
"Version": "0.0.71"
"Version": "0.0.72"
}
}
},

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

@ -412,7 +412,7 @@ config({
// Runtime dependencies for Linux
{
id: "runtime.linux-x64.BuildXL",
version: "0.0.71",
version: "0.0.72",
osSkip: importFile(f`config.microsoftInternal.dsc`).isMicrosoftInternal
? []
: [ "win", "macOS", "unix" ]