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

Fix another memory leak related to UNION ALL and sub-selects. (CVS 5336)

FossilOrigin-Name: 56109b9a1f600ab3f16769aba0d47dcf782bbc95
This commit is contained in:
danielk1977
2008-07-01 17:39:27 +00:00
parent 4dc8ef520a
commit 5e7ad50858
4 changed files with 155 additions and 54 deletions

View File

@@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle SELECT statements in SQLite.
**
** $Id: select.c,v 1.443 2008/07/01 16:05:26 danielk1977 Exp $
** $Id: select.c,v 1.444 2008/07/01 17:39:27 danielk1977 Exp $
*/
#include "sqliteInt.h"
@@ -2895,6 +2895,9 @@ static int multiSelectOrderBy(
/* Reassembly the compound query so that it will be freed correctly
** by the calling function */
if( p->pPrior ){
sqlite3SelectDelete(p->pPrior);
}
p->pPrior = pPrior;
/*** TBD: Insert subroutine calls to close cursors on incomplete