Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Make sure the 'cTag' structure field is initialized to zero. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
1a2aa2b37ecc8edb903467a3c1f5032e |
| User & Date: | mistachkin 2015-02-23 23:27:21.401 |
Context
|
2015-02-24
| ||
| 00:36 | Execute 'optional' SQL statements in their original order. ... (check-in: 9491f1dd54 user: mistachkin tags: trunk) | |
|
2015-02-23
| ||
| 23:40 | Execute 'optional' SQL statements in their original order. ... (Closed-Leaf check-in: 24d7ebe12a user: mistachkin tags: optSql) | |
| 23:27 | Make sure the 'cTag' structure field is initialized to zero. ... (check-in: 1a2aa2b37e user: mistachkin tags: trunk) | |
| 18:52 | New entry on the "quotes.wiki" page. ... (check-in: a56f58299c user: drh tags: trunk) | |
Changes
Changes to src/cgi.c.
| ︙ | ︙ | |||
463 464 465 466 467 468 469 470 471 472 473 474 475 476 |
aParamQP[nUsedQP].zName = zName;
aParamQP[nUsedQP].zValue = zValue;
if( g.fHttpTrace ){
fprintf(stderr, "# cgi: %s = [%s]\n", zName, zValue);
}
aParamQP[nUsedQP].seq = seqQP++;
aParamQP[nUsedQP].isQP = isQP;
nUsedQP++;
sortQP = 1;
}
/*
** Add another query parameter or cookie to the parameter set.
** zName is the name of the query parameter or cookie and zValue
| > | 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 |
aParamQP[nUsedQP].zName = zName;
aParamQP[nUsedQP].zValue = zValue;
if( g.fHttpTrace ){
fprintf(stderr, "# cgi: %s = [%s]\n", zName, zValue);
}
aParamQP[nUsedQP].seq = seqQP++;
aParamQP[nUsedQP].isQP = isQP;
aParamQP[nUsedQP].cTag = 0;
nUsedQP++;
sortQP = 1;
}
/*
** Add another query parameter or cookie to the parameter set.
** zName is the name of the query parameter or cookie and zValue
|
| ︙ | ︙ |