core/manager: remove infinite loop

(cherry picked from commit 145b1f799f)
This commit is contained in:
Shawn Landden
2014-02-23 12:41:54 +00:00
committed by Colin Guthrie
parent 64a880e763
commit f980d7eccb
+1 -3
View File
@@ -2285,10 +2285,8 @@ int manager_deserialize(Manager *m, FILE *f, FDSet *fds) {
}
finish:
if (ferror(f)) {
if (ferror(f))
r = -EIO;
goto finish;
}
assert(m->n_reloading > 0);
m->n_reloading --;