Avoid updating diff until there is a current work base

This commit is contained in:
Con Kolivas 2014-09-23 09:05:29 +10:00
parent 427c1bf12c
commit 10bb351736

View File

@ -872,6 +872,11 @@ static void update_diff(ckpool_t *ckp)
json_t *val;
char *buf;
if (unlikely(!current_workbase)) {
LOGINFO("No current workbase to update diff yet");
return;
}
buf = send_recv_proc(ckp->generator, "getdiff");
if (unlikely(!buf)) {
LOGWARNING("Failed to get diff from generator in update_diff");