Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | No longer reject valid Control artifacts like this one: [ce319b7898] |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
55cacfcacef9b845a21511b24b6a403c |
| User & Date: | jan.nijtmans 2013-08-18 08:11:03.204 |
Context
|
2013-08-19
| ||
| 11:22 | Update to the latest SQLite 3.8.0 beta in order to test SQLite. check-in: 48445291c0 user: drh tags: trunk | |
|
2013-08-18
| ||
| 08:11 | No longer reject valid Control artifacts like this one: [ce319b7898] check-in: 55cacfcace user: jan.nijtmans tags: trunk | |
|
2013-08-17
| ||
| 19:38 | Resolved ticket [05f4bbc266]. check-in: 635598ed93 user: stephan tags: trunk | |
Changes
Changes to src/manifest.c.
| ︙ | ︙ | |||
767 768 769 770 771 772 773 |
p->nTagAlloc = p->nTagAlloc*2 + 10;
p->aTag = fossil_realloc(p->aTag, p->nTagAlloc*sizeof(p->aTag[0]) );
}
i = p->nTag++;
p->aTag[i].zName = zName;
p->aTag[i].zUuid = zUuid;
p->aTag[i].zValue = zValue;
| | | 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 |
p->nTagAlloc = p->nTagAlloc*2 + 10;
p->aTag = fossil_realloc(p->aTag, p->nTagAlloc*sizeof(p->aTag[0]) );
}
i = p->nTag++;
p->aTag[i].zName = zName;
p->aTag[i].zUuid = zUuid;
p->aTag[i].zValue = zValue;
if( i>0 && fossil_strcmp(p->aTag[i-1].zName, zName)>0 ){
SYNTAX("T-card in the wrong order");
}
break;
}
/*
** U ?<login>?
|
| ︙ | ︙ |