]> git.ipfire.org Git - thirdparty/git.git/blobdiff - sha1-array.c
sha1_array: let callbacks interrupt iteration
[thirdparty/git.git] / sha1-array.c
index 6f4a2246c9a912d06cf1a6995e07bf2008ec749d..af1d7d560d303f6a04ff1029909782c7969a655c 100644 (file)
@@ -42,7 +42,7 @@ void sha1_array_clear(struct sha1_array *array)
        array->sorted = 0;
 }
 
-void sha1_array_for_each_unique(struct sha1_array *array,
+int sha1_array_for_each_unique(struct sha1_array *array,
                                for_each_sha1_fn fn,
                                void *data)
 {
@@ -52,8 +52,12 @@ void sha1_array_for_each_unique(struct sha1_array *array,
                sha1_array_sort(array);
 
        for (i = 0; i < array->nr; i++) {
+               int ret;
                if (i > 0 && !hashcmp(array->sha1[i], array->sha1[i-1]))
                        continue;
-               fn(array->sha1[i], data);
+               ret = fn(array->sha1[i], data);
+               if (ret)
+                       return ret;
        }
+       return 0;
 }