llama-gguf-hash: ignore maybe-uninitialized gcc-8 error
This commit is contained in:
parent
5360799e85
commit
8f3749642e
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ static const uint32_t K[64] = {
|
|||
static void
|
||||
sha256_transform(uint32_t *state, const uint32_t *data)
|
||||
{
|
||||
uint32_t W[16];
|
||||
uint32_t W[16] = {0};
|
||||
unsigned j;
|
||||
#ifdef _SHA256_UNROLL2
|
||||
uint32_t a,b,c,d,e,f,g,h;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue