diff --git a/src/iterator.h b/src/iterator.h index 12eb96bb0..974c2daeb 100644 --- a/src/iterator.h +++ b/src/iterator.h @@ -71,6 +71,9 @@ GIT_INLINE(int) git_iterator_reset(git_iterator *iter) GIT_INLINE(void) git_iterator_free(git_iterator *iter) { + if (iter == NULL) + return; + iter->free(iter); git__free(iter); }