From: Petr Baudis Date: Fri, 22 Sep 2006 23:08:45 +0000 (+0200) Subject: Fix buggy ref recording X-Git-Tag: v1.4.4-rc1~43^2~23 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7c1a278d99a18445e12bd55e308cd69080963198;p=git.git Fix buggy ref recording There is a format string vulnerability introduced with the packed refs file format. Signed-off-by: Petr Baudis Signed-off-by: Junio C Hamano --- diff --git a/refs.c b/refs.c index 40f16af18..5fdf9c413 100644 --- a/refs.c +++ b/refs.c @@ -472,7 +472,7 @@ static struct ref_lock *lock_ref_sha1_basic(const char *ref, lock->ref_name = xstrdup(ref); lock->log_file = xstrdup(git_path("logs/%s", ref)); - ref_file = git_path(ref); + ref_file = git_path("%s", ref); lock->force_write = lstat(ref_file, &st) && errno == ENOENT; if (safe_create_leading_directories(ref_file))