commit 0f58026f98fdad502497af6b7bb1e8778ee88b42 from: Stefan Sperling date: Mon Apr 05 17:51:07 2021 UTC add a missing STATUS_EXISTS notification in update_blob() commit - 6de13529a2a91cf3e898260a49c82ba7ace2d4db commit + 0f58026f98fdad502497af6b7bb1e8778ee88b42 blob - da4a3d721af08f180126ad89442921b2d11e492b blob + d3e48372f3109c8b5259a25c8bced11886caa2a1 --- lib/worktree.c +++ lib/worktree.c @@ -1946,6 +1946,10 @@ update_blob(struct got_worktree *worktree, SHA1_DIGEST_LENGTH) == 0) { err = sync_timestamps(worktree->root_fd, path, status, ie, &sb); + if (err) + goto done; + err = (*progress_cb)(progress_arg, GOT_STATUS_EXISTS, + path); goto done; } }