diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-01-20 21:09:16 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-20 20:01:52 -0800 |
commit | 45d76f17182278d4c1de37b3eed60beb3b2f21ab (patch) | |
tree | f87db314ad20722d29f7809b4785df4d63ccabca /git-sh-setup.sh | |
parent | 19c61a58cf4e989cee2f11ad856c6c18c039486f (diff) | |
download | git-45d76f17182278d4c1de37b3eed60beb3b2f21ab.tar.gz |
Fix memory corruption when .gitignore does not end by \n
Commit b5041c5 (Avoid writing to buffer in add_excludes_from_file_1())
tried not to append '\n' at the end because the next commit
may return a buffer that does not have extra space for that.
Unfortunately it left this assignment in the loop:
buf[i - (i && buf[i-1] == '\r')] = 0;
that can corrupt memory if "buf" is not '\n' terminated. But even if
it does not corrupt memory, the last line would not be
NULL-terminated, leading to errors later inside add_exclude().
This patch fixes it by reverting the faulty commit and make
sure "buf" is always \n terminated.
While at it, free unused memory properly.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-sh-setup.sh')
0 files changed, 0 insertions, 0 deletions