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

Fix an uninitialized variable. Ticket #1244. (CVS 2460)

FossilOrigin-Name: 582cb77d72031f78b560f67222a0e6ce5e3ca3f2
This commit is contained in:
drh
2005-05-16 22:37:54 +00:00
parent 5205b40393
commit c43e8be80c
3 changed files with 10 additions and 9 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.245 2005/04/29 02:10:00 drh Exp $
** $Id: select.c,v 1.246 2005/05/16 22:37:55 drh Exp $
*/
#include "sqliteInt.h"
@@ -929,6 +929,7 @@ Table *sqlite3ResultSetOfSelect(Parse *pParse, char *zTabName, Select *pSelect){
/* Get the typename, type affinity, and collating sequence for the
** column.
*/
memset(&sNC, 0, sizeof(sNC));
sNC.pSrcList = pSelect->pSrc;
zType = sqliteStrDup(columnType(&sNC, p));
pCol->zType = zType;