1
0
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:
drh
2015-05-22 23:45:56 +00:00
parent cea1dc2798
commit f9def06160
3 changed files with 8 additions and 8 deletions

View File

@ -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");