trunk/3rdparty/sqlite3/sqlite3.c
| r245457 | r245458 | |
| 72821 | 72821 | UnpackedRecord r; |
| 72822 | 72822 | char aTempRec[ROUND8(sizeof(UnpackedRecord)) + sizeof(Mem)*4 + 7]; |
| 72823 | 72823 | |
| 72824 | // MAME: fixed Visual Studio warning about potentially uninitialized variable with optimizations enabled |
| 72825 | memset(&r, 0x00, sizeof(UnpackedRecord)); |
| 72826 | |
| 72824 | 72827 | #ifdef SQLITE_TEST |
| 72825 | 72828 | if( pOp->opcode!=OP_NoConflict ) sqlite3_found_count++; |
| 72826 | 72829 | #endif |
| r245457 | r245458 | |
| 93564 | 93567 | WhereInfo *pWInfo; /* Information about the WHERE clause */ |
| 93565 | 93568 | Index *pIdx; /* For looping over indices of the table */ |
| 93566 | 93569 | int iTabCur; /* Cursor number for the table */ |
| 93567 | | int iDataCur; /* VDBE cursor for the canonical data source */ |
| 93568 | | int iIdxCur; /* Cursor number of the first index */ |
| 93570 | // MAME: fixed Visual Studio warning about potentially uninitialized variable with optimizations enabled |
| 93571 | int iDataCur = 0; /* VDBE cursor for the canonical data source */ |
| 93572 | // MAME: fixed Visual Studio warning about potentially uninitialized variable with optimizations enabled |
| 93573 | int iIdxCur = 0; /* Cursor number of the first index */ |
| 93569 | 93574 | int nIdx; /* Number of indices */ |
| 93570 | 93575 | sqlite3 *db; /* Main database structure */ |
| 93571 | 93576 | AuthContext sContext; /* Authorization context */ |