Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a NULL-pointer dereference in "branch new". Ticket [a4a9f45b67cbbcf26]. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
ff79f97a072ee1c1630ba1c26e53cbdd |
| User & Date: | drh 2010-10-27 19:56:38.000 |
Context
|
2010-10-28
| ||
| 14:03 | New higher-performance clone algorithm merged in from the experimental branch. ... (check-in: fda9b15cfc user: drh tags: trunk) | |
|
2010-10-27
| ||
| 19:56 | Fix a NULL-pointer dereference in "branch new". Ticket [a4a9f45b67cbbcf26]. ... (check-in: ff79f97a07 user: drh tags: trunk) | |
| 11:54 | Use delta encoding between baseline manifests separated by delta manifests. ... (check-in: e21ca81e1a user: drh tags: trunk) | |
Changes
Changes to src/branch.c.
| ︙ | |||
90 91 92 93 94 95 96 | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | - + |
blob_appendf(&branch, "D %s\n", zDate);
/* Copy all of the content from the parent into the branch */
for(i=0; i<pParent->nFile; ++i){
blob_appendf(&branch, "F %F", pParent->aFile[i].zName);
if( pParent->aFile[i].zUuid ){
blob_appendf(&branch, " %s", pParent->aFile[i].zUuid);
|
| ︙ |