summaryrefslogtreecommitdiff
path: root/wt-status.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-02-17 18:15:28 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-02-17 18:15:29 (GMT)
commitfccf4a05675b9da0feb8a2f3d11fb53eb44d7dae (patch)
treefdb6cad982fd40627af93d18d9f17e0c3a6b16b1 /wt-status.c
parentf6b50a8bf4dcc0e0e67698d365640904ac8522b3 (diff)
parent66ec904b4e5779c2ffd68d3bb8071cc15b2287c7 (diff)
downloadgit-fccf4a05675b9da0feb8a2f3d11fb53eb44d7dae.zip
git-fccf4a05675b9da0feb8a2f3d11fb53eb44d7dae.tar.gz
git-fccf4a05675b9da0feb8a2f3d11fb53eb44d7dae.tar.bz2
Merge branch 'jk/status-read-branch-name-fix'
Code to read branch name from various files in .git/ directory would have misbehaved if the code to write them left an empty file. * jk/status-read-branch-name-fix: read_and_strip_branch: fix typo'd address-of operator
Diffstat (limited to 'wt-status.c')
-rw-r--r--wt-status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wt-status.c b/wt-status.c
index b54eac5..29666d0 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -1140,7 +1140,7 @@ static char *read_and_strip_branch(const char *path)
if (strbuf_read_file(&sb, git_path("%s", path), 0) <= 0)
goto got_nothing;
- while (&sb.len && sb.buf[sb.len - 1] == '\n')
+ while (sb.len && sb.buf[sb.len - 1] == '\n')
strbuf_setlen(&sb, sb.len - 1);
if (!sb.len)
goto got_nothing;