[native] Fix undefined behavior in BufferPool::ConstBlob (#10)

This commit is contained in:
Ara Ayvazyan 2020-02-08 22:54:25 -08:00 коммит произвёл GitHub
Родитель 728b0c5627
Коммит c42b2ad8fc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -185,7 +185,7 @@ namespace Bond
const char* data() const
{
return std::addressof(*m_begin);
return size() != 0 ? std::addressof(*m_begin) : nullptr;
}
ConstBlob GetRange(std::size_t offset, std::size_t count) const