1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Suppress a couple uninitialized variable warnings.

FossilOrigin-Name: 29571e228cc85f7768c3ad57d0c7af96b5a54983
This commit is contained in:
drh
2010-06-26 20:00:54 +00:00
parent 4013130485
commit 7d113eb0ab
4 changed files with 21 additions and 11 deletions

View File

@@ -1348,7 +1348,7 @@ static void walMergesort(
int nMerge; /* Number of elements in list aMerge */
ht_slot *aMerge; /* List to be merged */
int iList; /* Index into input list */
int iSub; /* Index into aSub array */
int iSub = 0; /* Index into aSub array */
struct Sublist aSub[13]; /* Array of sub-lists */
memset(aSub, 0, sizeof(aSub));