1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Fix an incorrect assert() added by check-in [fa58aad48a788802].

Problem found by dbsqlfuzz.

FossilOrigin-Name: a17b29f08c888301911c35096899f10d24192c8ecec467cddde5401b6bd1903f
This commit is contained in:
drh
2019-12-26 00:53:43 +00:00
parent e86f3402ac
commit aaa5ba0609
3 changed files with 8 additions and 8 deletions

View File

@@ -5757,7 +5757,7 @@ int sqlite3Select(
#ifndef SQLITE_OMIT_WINDOWFUNC
rc = sqlite3WindowRewrite(pParse, p);
if( rc ){
assert( pParse->nErr>0 );
assert( db->mallocFailed || pParse->nErr>0 );
goto select_end;
}
#if SELECTTRACE_ENABLED