Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Enhance sqlite3_bind_parameter_index so that is does not segfault if you call it incorrectly by passing NULL in place of the parameter name. Ticket #1032. (CVS 2159) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
bf81aabff1303b66f12d28b730d19b7c |
User & Date: | drh 2004-12-09 18:29:14.000 |
Context
2004-12-10
| ||
02:08 | Add a -DUSE_TCL_STUBS to the standard Makefile. This might help with ticket #1034. Or maybe not. (CVS 2160) (check-in: 4c30c373ef user: drh tags: trunk) | |
2004-12-09
| ||
18:29 | Enhance sqlite3_bind_parameter_index so that is does not segfault if you call it incorrectly by passing NULL in place of the parameter name. Ticket #1032. (CVS 2159) (check-in: bf81aabff1 user: drh tags: trunk) | |
2004-12-07
| ||
15:41 | Only evaluate expressions once for UPDATE and INSERT statements that have BEFORE triggers. Fix for ticket #980. (CVS 2158) (check-in: 4852186aca user: drh tags: trunk) | |
Changes
Changes to src/vdbeapi.c.
︙ | ︙ | |||
589 590 591 592 593 594 595 | int i; if( p==0 ){ return 0; } createVarMap(p); for(i=0; i<p->nVar; i++){ const char *z = p->azVar[i]; | | | 589 590 591 592 593 594 595 596 597 598 599 600 601 | int i; if( p==0 ){ return 0; } createVarMap(p); for(i=0; i<p->nVar; i++){ const char *z = p->azVar[i]; if( z && zName && strcmp(z,zName)==0 ){ return i+1; } } return 0; } |