Ignore return value of write() in signal handler

This commit is contained in:
Nicolas Werner 2021-06-30 15:28:44 +02:00
parent e5776f7177
commit 66e69d7f2b
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,8 @@ stacktraceHandler(int signum)
#endif
);
if (file != -1) {
constexpr char header[] = "Error: signal\n";
write(file, header, std::size(header) - 1);
constexpr char header[] = "Error: signal\n";
[[maybe_unused]] auto ret = write(file, header, std::size(header) - 1);
backtrace_symbols_fd(array, size, file);
close(file);
}