reference: don't update fallback drift on manual input
This fixes a crash due to assertion failure in update_fb_drifts() when fallbackdrift is enabled and manual input is provided.
This commit is contained in:
parent
8472fd8133
commit
45fa4750da
1 changed files with 1 additions and 1 deletions
|
@ -1076,7 +1076,7 @@ REF_SetReference(int stratum,
|
|||
}
|
||||
|
||||
/* Update fallback drifts */
|
||||
if (fb_drifts) {
|
||||
if (fb_drifts && are_we_synchronised) {
|
||||
update_fb_drifts(abs_freq_ppm, update_interval);
|
||||
schedule_fb_drift(&now);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue