From 8a4acd699536c518c9245714d6175aa39d13eb9d Mon Sep 17 00:00:00 2001 From: Johan Herland Date: Wed, 12 Nov 2014 01:40:15 +0100 Subject: notes: empty notes should be shown by 'git log' If the user has gone through the trouble of explicitly adding an empty note, then "git log" should not silently skip it (as if it didn't exist). Signed-off-by: Johan Herland Signed-off-by: Junio C Hamano --- notes.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'notes.c') diff --git a/notes.c b/notes.c index 5fe691dbcd..62bc6e1818 100644 --- a/notes.c +++ b/notes.c @@ -1218,8 +1218,7 @@ static void format_note(struct notes_tree *t, const unsigned char *object_sha1, if (!sha1) return; - if (!(msg = read_sha1_file(sha1, &type, &msglen)) || !msglen || - type != OBJ_BLOB) { + if (!(msg = read_sha1_file(sha1, &type, &msglen)) || type != OBJ_BLOB) { free(msg); return; } -- cgit 1.2.3-korg