mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Fix datatype
This has been introduced by 84b0d0faba.
Besides it causes runtime issues on POWER5 (and presumably later), the
implementation would expect this array to consist on 32-bit integers.
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
/* GOST context */
|
||||
typedef struct {
|
||||
uint32_t state[16];
|
||||
size_t count[2];
|
||||
uint32_t count[2];
|
||||
unsigned char length;
|
||||
unsigned char buffer[32];
|
||||
const uint32_t (*tables)[4][256];
|
||||
|
||||
Reference in New Issue
Block a user