mirror of
https://github.com/gabime/spdlog.git
synced 2024-12-25 01:51:38 +08:00
async_sink fixes
This commit is contained in:
parent
457cc1170b
commit
7cbf6dcbf7
@ -74,7 +74,6 @@ inline void c11log::sinks::async_sink::_sink_it(const details::log_msg& msg)
|
|||||||
//re allocate on the heap the (stack based) message
|
//re allocate on the heap the (stack based) message
|
||||||
auto new_msg = new details::log_msg();
|
auto new_msg = new details::log_msg();
|
||||||
*new_msg = msg;
|
*new_msg = msg;
|
||||||
auto msg_size = msg.msg_buf.second;
|
|
||||||
|
|
||||||
char *buf = new char[msg_size];
|
char *buf = new char[msg_size];
|
||||||
std::memcpy(buf, msg.msg_buf.first, msg_size);
|
std::memcpy(buf, msg.msg_buf.first, msg_size);
|
||||||
|
Loading…
Reference in New Issue
Block a user