Skip to content

Commit a8cb6d9

Browse files
committed
Patch sqlite3.c to avoid CGo compiler warning
https://sqlite.org/forum/forumpost/e39020f82d
1 parent 247817f commit a8cb6d9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

c/sqlite3.c

+4-5
Original file line numberDiff line numberDiff line change
@@ -128972,9 +128972,9 @@ SQLITE_PRIVATE Select *sqlite3SelectNew(
128972128972
u32 selFlags, /* Flag parameters, such as SF_Distinct */
128973128973
Expr *pLimit /* LIMIT value. NULL means not used */
128974128974
){
128975-
Select *pNew;
128975+
Select *pNew, *pAllocated;
128976128976
Select standin;
128977-
pNew = sqlite3DbMallocRawNN(pParse->db, sizeof(*pNew) );
128977+
pAllocated = pNew = sqlite3DbMallocRawNN(pParse->db, sizeof(*pNew) );
128978128978
if( pNew==0 ){
128979128979
assert( pParse->db->mallocFailed );
128980128980
pNew = &standin;
@@ -129008,12 +129008,11 @@ SQLITE_PRIVATE Select *sqlite3SelectNew(
129008129008
#endif
129009129009
if( pParse->db->mallocFailed ) {
129010129010
clearSelect(pParse->db, pNew, pNew!=&standin);
129011-
pNew = 0;
129011+
pAllocated = 0;
129012129012
}else{
129013129013
assert( pNew->pSrc!=0 || pParse->nErr>0 );
129014129014
}
129015-
assert( pNew!=&standin );
129016-
return pNew;
129015+
return pAllocated;
129017129016
}
129018129017

129019129018

0 commit comments

Comments
 (0)