git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] link_alt_odb_entry: fix read over array bounds reported by valgrind
@ 2012-07-28 15:46 Heiko Voigt
  2012-07-30  0:54 ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Heiko Voigt @ 2012-07-28 15:46 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, Thomas Rast, Torsten Bögershausen

pfxlen can be longer than the path in objdir when relative_base contains
the path to gits object directory.

Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net>
---
 sha1_file.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/sha1_file.c b/sha1_file.c
index 4ccaf7a..631d0dd 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -251,7 +251,7 @@ static int link_alt_odb_entry(const char * entry, int len, const char * relative
 	const char *objdir = get_object_directory();
 	struct alternate_object_database *ent;
 	struct alternate_object_database *alt;
-	int pfxlen, entlen;
+	int pfxlen, entlen, objdirlen;
 	struct strbuf pathbuf = STRBUF_INIT;
 
 	if (!is_absolute_path(entry) && relative_base) {
@@ -298,7 +298,8 @@ static int link_alt_odb_entry(const char * entry, int len, const char * relative
 			return -1;
 		}
 	}
-	if (!memcmp(ent->base, objdir, pfxlen)) {
+	objdirlen = strlen(objdir);
+	if (!memcmp(ent->base, objdir, pfxlen > objdirlen ? objdirlen : pfxlen)) {
 		free(ent);
 		return -1;
 	}
-- 
1.7.12.rc0.23.gc9a5ac4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-07-30 17:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-28 15:46 [PATCH] link_alt_odb_entry: fix read over array bounds reported by valgrind Heiko Voigt
2012-07-30  0:54 ` Junio C Hamano
2012-07-30  1:01   ` Junio C Hamano
2012-07-30 17:33   ` [PATCH v2] " Heiko Voigt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).