Added nullptr check to append_string_view

This commit is contained in:
gabime 2018-10-19 02:45:35 +03:00
parent 6355e9895d
commit a5a39c52b0
1 changed files with 4 additions and 1 deletions

View File

@ -24,7 +24,10 @@ template<size_t Buffer_Size>
inline void append_string_view(fmt::string_view view, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
{
auto *buf_ptr = view.data();
dest.append(buf_ptr, buf_ptr + view.size());
if(buf_ptr != nullptr)
{
dest.append(buf_ptr, buf_ptr + view.size());
}
}
template<typename T, size_t Buffer_Size>