File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -128972,9 +128972,9 @@ SQLITE_PRIVATE Select *sqlite3SelectNew(
128972
128972
u32 selFlags, /* Flag parameters, such as SF_Distinct */
128973
128973
Expr *pLimit /* LIMIT value. NULL means not used */
128974
128974
){
128975
- Select *pNew;
128975
+ Select *pNew, *pAllocated ;
128976
128976
Select standin;
128977
- pNew = sqlite3DbMallocRawNN(pParse->db, sizeof(*pNew) );
128977
+ pAllocated = pNew = sqlite3DbMallocRawNN(pParse->db, sizeof(*pNew) );
128978
128978
if( pNew==0 ){
128979
128979
assert( pParse->db->mallocFailed );
128980
128980
pNew = &standin;
@@ -129008,12 +129008,11 @@ SQLITE_PRIVATE Select *sqlite3SelectNew(
129008
129008
#endif
129009
129009
if( pParse->db->mallocFailed ) {
129010
129010
clearSelect(pParse->db, pNew, pNew!=&standin);
129011
- pNew = 0;
129011
+ pAllocated = 0;
129012
129012
}else{
129013
129013
assert( pNew->pSrc!=0 || pParse->nErr>0 );
129014
129014
}
129015
- assert( pNew!=&standin );
129016
- return pNew;
129015
+ return pAllocated;
129017
129016
}
129018
129017
129019
129018
You can’t perform that action at this time.
0 commit comments