Restore safe reinterpret_cast in readUInt32

This commit is contained in:
Andrew Nelless 2016-09-09 15:27:30 +01:00
parent e81f7ab8c7
commit fb5e2bb171
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ IClipboard::copy(IClipboard* dst, const IClipboard* src, Time time)
UInt32
IClipboard::readUInt32(const char* buf)
{
const unsigned char* ubuf = static_cast<const unsigned char*>(buf);
const unsigned char* ubuf = reinterpret_cast<const unsigned char*>(buf);
return (static_cast<UInt32>(ubuf[0]) << 24) |
(static_cast<UInt32>(ubuf[1]) << 16) |
(static_cast<UInt32>(ubuf[2]) << 8) |