Use SAL notation to indicate the capacity parameter.

This commit is contained in:
Matt Koscumb 2018-10-11 10:51:49 -07:00
Родитель e183f01716
Коммит 1ea5d8653e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -255,7 +255,7 @@ namespace testing {
m_sock = Invalid;
}
int recv(void* buffer, unsigned size)
int recv(_Out_bytecap_(size) void* buffer, unsigned size)
{
assert(m_sock != Invalid);
return ::recv(m_sock, reinterpret_cast<char*>(buffer), size, 0);