diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/fuzzcheck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzzcheck.c b/test/fuzzcheck.c index 3868b5538..ba6450457 100644 --- a/test/fuzzcheck.c +++ b/test/fuzzcheck.c @@ -1023,7 +1023,7 @@ extern int sqlite3_dbdata_init(sqlite3*,const char**,void*); ** print the supplied SQL statement to stdout. */ static int recoverSqlCb(void *pCtx, const char *zSql){ - if( eVerbosity>=2 ){ + if( eVerbosity>=2 && zSql ){ printf("%s\n", zSql); } return SQLITE_OK; |