git-bundle: only die if pack would be empty, warn if ref is skipped
[gitweb.git] / sha1_name.c
index 31812d3d26c7b33eaf3fe76f3145fd1fc193366d..6b8b67b4db3cbccc13d6ddda5dd3a1be11adabd1 100644 (file)
@@ -605,7 +605,7 @@ static int handle_one_ref(const char *path,
 int get_sha1_oneline(const char *prefix, unsigned char *sha1)
 {
        struct commit_list *list = NULL, *backup = NULL, *l;
-       struct commit *commit;
+       struct commit *commit = NULL;
 
        if (prefix[0] == '!') {
                if (prefix[1] != '!')
@@ -617,8 +617,12 @@ int get_sha1_oneline(const char *prefix, unsigned char *sha1)
        for_each_ref(handle_one_ref, &list);
        for (l = list; l; l = l->next)
                commit_list_insert(l->item, &backup);
-       while ((commit = pop_most_recent_commit(&list, ONELINE_SEEN))) {
+       while (list) {
                char *p;
+
+               commit = pop_most_recent_commit(&list, ONELINE_SEEN);
+               if (!commit)
+                       break;
                parse_object(commit->object.sha1);
                if (!commit->buffer || !(p = strstr(commit->buffer, "\n\n")))
                        continue;