This makes it more convenient in cleanup code, like free(NULL). Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> --- streaming.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/streaming.c b/streaming.c index 3a3cd12..38b39cd 100644 --- a/streaming.c +++ b/streaming.c @@ -94,7 +94,7 @@ struct git_istream { int close_istream(struct git_istream *st) { - int r = st->vtbl->close(st); + int r = st ? st->vtbl->close(st) : 0; free(st); return r; } -- 1.7.8.36.g69ee2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html