mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
windows: ACH: reintepret_cast the result buffer
This commit is contained in:
parent
45ed6d4018
commit
180ff193aa
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ struct AcceleratedCryptographicHash::impl {
|
||||||
return {};
|
return {};
|
||||||
} else {
|
} else {
|
||||||
// No cleanup required, as the dtor of this class will do so.
|
// No cleanup required, as the dtor of this class will do so.
|
||||||
auto returnArray = QByteArray(pbHash, cbHash);
|
auto returnArray = QByteArray(reinterpret_cast<char *>(pbHash), cbHash);
|
||||||
return returnArray;
|
return returnArray;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue