Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a panic message in the historical_version_of_file() routine. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
3b82ee5483bf8aaea4d3b94208c1a2bd |
| User & Date: | drh 2011-02-18 22:25:08.577 |
Context
|
2011-02-19
| ||
| 16:14 | Add the "vpatch" web method that returns the difference between two checkins as text/plain and a a "patch" hyperlink on the checkin information page that jumps to the appropriate vpatch page. check-in: 4bdf71b1ce user: drh tags: trunk | |
|
2011-02-18
| ||
| 22:25 | Fix a panic message in the historical_version_of_file() routine. check-in: 3b82ee5483 user: drh tags: trunk | |
| 21:47 | Improved display of selected band in a text artifact. check-in: b9d4631421 user: drh tags: trunk | |
Changes
Changes to src/update.c.
| ︙ | ︙ | |||
481 482 483 484 485 486 487 488 489 490 491 492 493 494 |
}
}
manifest_destroy(pManifest);
if( errCode<=0 ){
fossil_fatal("file %s does not exist in checkin: %s", file, revision);
}
}else if( errCode<=0 ){
fossil_panic("could not parse manifest for checkin: %s", revision);
}
return errCode;
}
/*
| > > > | 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
}
}
manifest_destroy(pManifest);
if( errCode<=0 ){
fossil_fatal("file %s does not exist in checkin: %s", file, revision);
}
}else if( errCode<=0 ){
if( revision==0 ){
revision = db_text("current", "SELECT uuid FROM blob WHERE rid=%d", rid);
}
fossil_panic("could not parse manifest for checkin: %s", revision);
}
return errCode;
}
/*
|
| ︙ | ︙ |