mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Fix an uninitialized variable in the decoder kv-vfs.
FossilOrigin-Name: 354726aa6c399053785f29104de15091629ce4bc275b9e2205cb3656a9e81cd7
This commit is contained in:
@@ -603,7 +603,7 @@ static void kvvfsDecodeJournal(
|
||||
const char *zTxt, /* Text encoding. Zero-terminated */
|
||||
int nTxt /* Bytes in zTxt, excluding zero terminator */
|
||||
){
|
||||
unsigned int n;
|
||||
unsigned int n = 0;
|
||||
int c, i, mult;
|
||||
i = 0;
|
||||
mult = 1;
|
||||
|
Reference in New Issue
Block a user