We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aa701f commit e34eaccCopy full SHA for e34eacc
src/tiffvisitor_int.cpp
@@ -745,7 +745,7 @@ namespace Exiv2 {
745
#endif
746
memset(buf + 8, 0x0, 4);
747
if (pTiffEntry->size() > 0) {
748
- memcpy(buf + 8, pTiffEntry->pData(), pTiffEntry->size());
+ memmove(buf + 8, pTiffEntry->pData(), pTiffEntry->size());
749
memset(const_cast<byte*>(pTiffEntry->pData()), 0x0, pTiffEntry->size());
750
}
751
0 commit comments