commit 473ec0cbc01929ac645dbfbf20c44538d3bc8a5d from: Alex Arx date: Tue Nov 19 11:53:14 2024 UTC fix nwords not being initialised commit - 98f5c0f5a33910fdff5f735b55274c6cd0cbecd0 commit + 473ec0cbc01929ac645dbfbf20c44538d3bc8a5d blob - 66c45d0129c6a2fd84a7931cc5c36ffa5d3848b4 blob + 71f6b3ac9f7aa94623cf4d2eabc9b08b028660f4 --- gpass.c +++ gpass.c @@ -108,7 +108,7 @@ gpass_words(int npass, int plen, int ent, char *f) { FILE *fp; long offs[MAXWORDS]; - int c, isword = 0, nwords; + int c, isword = 0, nwords = 0; #ifdef __OpenBSD__ if (unveil(f, "r") == -1)