Merge "Modify missing output fd message."
This commit is contained in:
commit
c1c2b4f816
|
@ -448,8 +448,10 @@ static void crash_completed(borrowed_fd sockfd, std::unique_ptr<Crash> crash) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (crash->output.text.fd == -1) {
|
if (crash->output.text.fd < 0) {
|
||||||
LOG(WARNING) << "missing output fd";
|
if (crash->output.text.fd == -1) {
|
||||||
|
LOG(WARNING) << "skipping tombstone file creation due to intercept";
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue