builtin/notes: fix premature failure when trying to add the empty blob
[gitweb.git] / builtin / notes.c
index 68b6cd8cc1ded390df592e1c6536d70bf1ffc8a0..9ee681688871fd1f3d9628ed7f8cda9b96d77d80 100644 (file)
@@ -266,7 +266,7 @@ static int parse_reuse_arg(const struct option *opt, const char *arg, int unset)
 
        if (get_sha1(arg, object))
                die(_("Failed to resolve '%s' as a valid ref."), arg);
-       if (!(buf = read_sha1_file(object, &type, &len)) || !len) {
+       if (!(buf = read_sha1_file(object, &type, &len))) {
                free(buf);
                die(_("Failed to read object '%s'."), arg);
        }