From f22166b5fee7dc3deaf44dda31d1b5d7ac1fdfd8 Mon Sep 17 00:00:00 2001 From: Christian Couder Date: Sat, 17 May 2014 14:16:34 +0200 Subject: [PATCH] replace: make sure --edit results in a different object It's a bad idea to create a replace ref for an object that points to the original object itself. That's why we have to check if the result from editing the original object is a different object and error out if it isn't. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- builtin/replace.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builtin/replace.c b/builtin/replace.c index 3da1bae0a6..0751804039 100644 --- a/builtin/replace.c +++ b/builtin/replace.c @@ -275,6 +275,9 @@ static int edit_and_replace(const char *object_ref, int force) free(tmpfile); + if (!hashcmp(old, new)) + return error("new object is the same as the old one: '%s'", sha1_to_hex(old)); + return replace_object_sha1(object_ref, old, "replacement", new, force); } -- 2.11.4.GIT