1
0
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:
Anatol Belski
2020-01-29 12:34:04 +01:00
parent 083bbf5140
commit 7d2ef3d2e5

View File

@@ -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];