mirror of
https://github.com/microsoft/DirectXTex
synced 2024-11-21 12:00:06 +00:00
Fixed PVS Studio V549 warning
This commit is contained in:
parent
80853b7771
commit
741870f834
@ -1018,7 +1018,7 @@ HRESULT DirectX::SaveDDSTextureToFile(
|
||||
|
||||
uint8_t* dptr = pixels.get();
|
||||
|
||||
size_t msize = std::min<size_t>(rowPitch, rowPitch);
|
||||
size_t msize = std::min<size_t>(rowPitch, dstRowPitch);
|
||||
for (size_t h = 0; h < rowCount; ++h)
|
||||
{
|
||||
memcpy_s(dptr, rowPitch, sptr, msize);
|
||||
|
Loading…
Reference in New Issue
Block a user