From 0f35efeb5722f950218e3649d7814a6a91b1c351 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Sat, 23 May 2020 10:15:51 +0100 Subject: git_pool_init: handle failure cases Propagate failures caused by pool initialization errors. --- src/sortedcache.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/sortedcache.c') diff --git a/src/sortedcache.c b/src/sortedcache.c index 8f7ea23e2..ee6363f6d 100644 --- a/src/sortedcache.c +++ b/src/sortedcache.c @@ -25,9 +25,8 @@ int git_sortedcache_new( sc = git__calloc(1, alloclen); GIT_ERROR_CHECK_ALLOC(sc); - git_pool_init(&sc->pool, 1); - - if (git_vector_init(&sc->items, 4, item_cmp) < 0 || + if (git_pool_init(&sc->pool, 1) < 0 || + git_vector_init(&sc->items, 4, item_cmp) < 0 || git_strmap_new(&sc->map) < 0) goto fail; -- cgit v1.2.1