Skip to content

Commit

Permalink
Merge branch 'bp/diff-no-index-strbuf-fix' into maint
Browse files Browse the repository at this point in the history
The directory path used in "git diff --no-index", when it recurses
down, was broken with a recent update after v1.7.10.1 release.

By Bobby Powers
* bp/diff-no-index-strbuf-fix:
  diff --no-index: don't leak buffers in queue_diff
  diff --no-index: reset temporary buffer lengths on directory iteration
  • Loading branch information
gitster committed May 25, 2012
2 parents a3347b9 + 176a335 commit 98eb3fc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
10 changes: 8 additions & 2 deletions diff-no-index.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ static int queue_diff(struct diff_options *o,
struct string_list p1 = STRING_LIST_INIT_DUP;
struct string_list p2 = STRING_LIST_INIT_DUP;
int i1, i2, ret = 0;
size_t len1 = 0, len2 = 0;

if (name1 && read_directory(name1, &p1))
return -1;
Expand All @@ -80,18 +81,23 @@ static int queue_diff(struct diff_options *o,
strbuf_addstr(&buffer1, name1);
if (buffer1.len && buffer1.buf[buffer1.len - 1] != '/')
strbuf_addch(&buffer1, '/');
len1 = buffer1.len;
}

if (name2) {
strbuf_addstr(&buffer2, name2);
if (buffer2.len && buffer2.buf[buffer2.len - 1] != '/')
strbuf_addch(&buffer2, '/');
len2 = buffer2.len;
}

for (i1 = i2 = 0; !ret && (i1 < p1.nr || i2 < p2.nr); ) {
const char *n1, *n2;
int comp;

strbuf_setlen(&buffer1, len1);
strbuf_setlen(&buffer2, len2);

if (i1 == p1.nr)
comp = 1;
else if (i2 == p2.nr)
Expand All @@ -117,8 +123,8 @@ static int queue_diff(struct diff_options *o,
}
string_list_clear(&p1, 0);
string_list_clear(&p2, 0);
strbuf_reset(&buffer1);
strbuf_reset(&buffer2);
strbuf_release(&buffer1);
strbuf_release(&buffer2);

return ret;
} else {
Expand Down
19 changes: 19 additions & 0 deletions t/t4053-diff-no-index.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/sh

test_description='diff --no-index'

. ./test-lib.sh

test_expect_success 'setup' '
mkdir a &&
mkdir b &&
echo 1 >a/1 &&
echo 2 >a/2
'

test_expect_success 'git diff --no-index directories' '
git diff --no-index a b >cnt
test $? = 1 && test_line_count = 14 cnt
'

test_done

0 comments on commit 98eb3fc

Please sign in to comment.