зеркало из https://github.com/microsoft/IPC.Bond.git
[native] Fix undefined behavior in BufferPool::ConstBlob (#10)
This commit is contained in:
Родитель
728b0c5627
Коммит
c42b2ad8fc
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче