commit | 54ba4c5fa2d7de216ca090ac2e657728462c81d5 | [log] [tgz] |
---|---|---|
author | Jeff King <peff@peff.net> | Thu Sep 24 17:07:31 2015 -0400 |
committer | Junio C Hamano <gitster@pobox.com> | Fri Sep 25 10:18:18 2015 -0700 |
tree | c76231dded57746aa6478fe63dd5d35b49707bd3 | |
parent | 7d0581a9abe733d8880113370c4d956b50f5bd9f [diff] |
http-walker: store url in a strbuf We do an unchecked sprintf directly into our url buffer. This doesn't overflow because we know that it was sized for "$base/objects/info/http-alternates", and we are writing "$base/objects/info/alternates", which must be smaller. But that is not immediately obvious to a reader who is looking for buffer overflows. Let's switch to a strbuf, so that we do not have to think about this issue at all. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>