mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 08:08:10 +00:00
Fixed a invalid scalar datatype return value in hc_bytealign() where it should be a vector datatype return value
This commit is contained in:
parent
762e5d5cda
commit
103fdf04a1
@ -361,7 +361,7 @@ DECLSPEC u32 hc_bfe_S (const u32 a, const u32 b, const u32 c)
|
||||
return amd_bfe (a, b, c);
|
||||
}
|
||||
|
||||
DECLSPEC u32 hc_bytealign (const u32x a, const u32x b, const u32x c)
|
||||
DECLSPEC u32x hc_bytealign (const u32x a, const u32x b, const u32x c)
|
||||
{
|
||||
return amd_bytealign (a, b, c);
|
||||
}
|
||||
|
@ -1,5 +1,11 @@
|
||||
* changes v4.2.1 -> xxx
|
||||
|
||||
##
|
||||
## Bugs
|
||||
##
|
||||
|
||||
- Fixed a invalid scalar datatype return value in hc_bytealign() where it should be a vector datatype return value
|
||||
|
||||
* changes v4.2.0 -> v4.2.1
|
||||
|
||||
##
|
||||
|
Loading…
Reference in New Issue
Block a user