Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'rs/qsort-s' into maint
author
Junio C Hamano
<gitster@pobox.com>
Wed, 18 Oct 2017 05:19:14 +0000
(14:19 +0900)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 18 Oct 2017 05:19:14 +0000
(14:19 +0900)
* rs/qsort-s:
test-stringlist: avoid buffer underrun when sorting nothing
t/helper/test-string-list.c
patch
|
blob
|
history
raw
(from parent 1:
3c905dd
)
diff --git
a/t/helper/test-string-list.c
b/t/helper/test-string-list.c
index c502fa16d307957b6fe23cbd5481fc35f49c00da..829ec3d7d2f58b9538bb3bbab47213eddb9e62ec 100644
(file)
--- a/
t/helper/test-string-list.c
+++ b/
t/helper/test-string-list.c
@@
-108,7
+108,7
@@
int cmd_main(int argc, const char **argv)
* Split by newline, but don't create a string_list item
* for the empty string after the last separator.
*/
- if (sb.buf[sb.len - 1] == '\n')
+ if (sb.
len && sb.
buf[sb.len - 1] == '\n')
strbuf_setlen(&sb, sb.len - 1);
string_list_split_in_place(&list, sb.buf, '\n', -1);