mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Ignore return value of write() in signal handler
This commit is contained in:
parent
e5776f7177
commit
66e69d7f2b
1 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ stacktraceHandler(int signum)
|
||||||
);
|
);
|
||||||
if (file != -1) {
|
if (file != -1) {
|
||||||
constexpr char header[] = "Error: signal\n";
|
constexpr char header[] = "Error: signal\n";
|
||||||
write(file, header, std::size(header) - 1);
|
[[maybe_unused]] auto ret = write(file, header, std::size(header) - 1);
|
||||||
backtrace_symbols_fd(array, size, file);
|
backtrace_symbols_fd(array, size, file);
|
||||||
close(file);
|
close(file);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue