Merge pull request #3326 from rmstyrczula/master

DefaultIOStream: Remove assert on empty count
pull/3327/head^2
Kim Kulling 2020-07-17 11:33:02 +02:00 committed by GitHub
commit 1975579268
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -100,7 +100,6 @@ size_t DefaultIOStream::Write(const void *pvBuffer,
size_t pCount) {
ai_assert(nullptr != pvBuffer);
ai_assert(0 != pSize);
ai_assert(0 != pCount);
return (mFile ? ::fwrite(pvBuffer, pSize, pCount, mFile) : 0);
}