mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 08:25:43 +08:00
Check fd_ is not nullptr in file_helper
This commit is contained in:
parent
7cb90d1ab2
commit
2aa8b6c971
@ -98,6 +98,7 @@ SPDLOG_INLINE void file_helper::close() {
|
||||
}
|
||||
|
||||
SPDLOG_INLINE void file_helper::write(const memory_buf_t &buf) {
|
||||
if(fd_ == nullptr) return;
|
||||
size_t msg_size = buf.size();
|
||||
auto data = buf.data();
|
||||
if (std::fwrite(data, 1, msg_size, fd_) != msg_size) {
|
||||
|
Loading…
Reference in New Issue
Block a user