915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
|
/*
** Fetch the baseline associated with the delta-manifest p.
** Print a fatal-error and quit if unable to load the baseline.
*/
static void fetch_baseline(Manifest *p){
if( p->zBaseline!=0 && p->pBaseline==0 ){
p->pBaseline = manifest_get_by_name(p->zBaseline, 0);
if( p->pBaseline==0 ){
fossil_fatal("cannot access baseline manifest %S", p->zBaseline);
}
}
}
/*
|
>
|
|
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
|
/*
** Fetch the baseline associated with the delta-manifest p.
** Print a fatal-error and quit if unable to load the baseline.
*/
static void fetch_baseline(Manifest *p){
if( p->zBaseline!=0 && p->pBaseline==0 ){
int rid = uuid_to_rid(p->zBaseline, 0);
p->pBaseline = manifest_get(rid, CFTYPE_MANIFEST);
if( p->pBaseline==0 ){
fossil_fatal("cannot access baseline manifest %S", p->zBaseline);
}
}
}
/*
|