mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix a bug in fuzzershell caused by an uninitialized local variable.
FossilOrigin-Name: 745deab87adc378a5376aaa9451fb9485bc2f4c4
This commit is contained in:
@ -454,7 +454,7 @@ int main(int argc, char **argv){
|
||||
int jj; /* Loop counter for azInFile[] */
|
||||
sqlite3_int64 iBegin; /* Start time for the whole program */
|
||||
sqlite3_int64 iStart, iEnd; /* Start and end-times for a test case */
|
||||
const char *zDbName; /* Name of an on-disk database file to open */
|
||||
const char *zDbName = 0; /* Name of an on-disk database file to open */
|
||||
|
||||
iBegin = timeOfDay();
|
||||
zFailCode = getenv("TEST_FAILURE");
|
||||
|
Reference in New Issue
Block a user