]> git.ipfire.org Git - thirdparty/git.git/blobdiff - branch.c
test-path-utils: offer to run a protectNTFS/protectHFS benchmark
[thirdparty/git.git] / branch.c
index 36541d05cd7b934bceba1af4fd4c121e51cd862b..86360d36b3edca403255b855b6edc8bdaf700de8 100644 (file)
--- a/branch.c
+++ b/branch.c
@@ -357,8 +357,9 @@ int replace_each_worktree_head_symref(const char *oldref, const char *newref,
 
                if (worktrees[i]->is_detached)
                        continue;
-               if (worktrees[i]->head_ref &&
-                   strcmp(oldref, worktrees[i]->head_ref))
+               if (!worktrees[i]->head_ref)
+                       continue;
+               if (strcmp(oldref, worktrees[i]->head_ref))
                        continue;
 
                refs = get_worktree_ref_store(worktrees[i]);