]> git.proxmox.com Git - libgit2.git/commit
rebase: plug memory leak in `rebase_alloc`
authorPatrick Steinhardt <ps@pks.im>
Mon, 22 Feb 2016 15:05:13 +0000 (16:05 +0100)
committerPatrick Steinhardt <ps@pks.im>
Tue, 23 Feb 2016 11:07:36 +0000 (12:07 +0100)
commit2afb6fa46df25ef77a166b92304cc6e725103c7c
tree9a2d15b08cb26b8bd37752001fdce08aa55620e8
parentd0cb11e794de0dbf3998ad88357c17f5d8bf843c
rebase: plug memory leak in `rebase_alloc`

Convert `rebase_alloc` to use our usual error propagation
patterns, that is accept an out-parameter and return an error
code that is to be checked by the caller. This allows us to use
the GITERR_CHECK_ALLOC macro, which helps static analysis.
src/rebase.c