diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2020-05-23 10:15:51 +0100 |
---|---|---|
committer | Patrick Steinhardt <ps@pks.im> | 2020-06-01 14:12:17 +0200 |
commit | 0f35efeb5722f950218e3649d7814a6a91b1c351 (patch) | |
tree | e53af9e934365660d0bacfd4c24b40434dfd353f /src/diff_parse.c | |
parent | abfdb8a6d252a4834df9234ad338c97f1a4f97f2 (diff) | |
download | libgit2-ethomson/poolinit.tar.gz |
git_pool_init: handle failure casesethomson/poolinit
Propagate failures caused by pool initialization errors.
Diffstat (limited to 'src/diff_parse.c')
-rw-r--r-- | src/diff_parse.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/diff_parse.c b/src/diff_parse.c index 098e56f9a..75e41a544 100644 --- a/src/diff_parse.c +++ b/src/diff_parse.c @@ -52,9 +52,8 @@ static git_diff_parsed *diff_parsed_alloc(void) diff->base.opts.flags &= ~GIT_DIFF_IGNORE_CASE; - git_pool_init(&diff->base.pool, 1); - - if (git_vector_init(&diff->patches, 0, NULL) < 0 || + if (git_pool_init(&diff->base.pool, 1) < 0 || + git_vector_init(&diff->patches, 0, NULL) < 0 || git_vector_init(&diff->base.deltas, 0, git_diff_delta__cmp) < 0) { git_diff_free(&diff->base); return NULL; |