Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Herland <johan@herland.net>2014-11-12 03:40:15 +0300
committerJunio C Hamano <gitster@pobox.com>2014-11-12 22:00:22 +0300
commit8a4acd699536c518c9245714d6175aa39d13eb9d (patch)
tree55e1e9ccda6bd4a3116f8cc9e1cbf93c78a28812 /notes.c
parentd73a5b933db1e722faa54d6709e89e2450d7c1e3 (diff)
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 <johan@herland.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'notes.c')
-rw-r--r--notes.c3
1 files changed, 1 insertions, 2 deletions
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;
}