xdiff/xprepare: fix a memory leak
authorRamsay Jones <ramsay@ramsayjones.plus.com>
Fri, 4 Mar 2016 23:10:50 +0000 (23:10 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 4 Mar 2016 23:51:08 +0000 (15:51 -0800)
The xdl_prepare_env() function may initialise an xdlclassifier_t
data structure via xdl_init_classifier(), which allocates memory
to several fields, for example 'rchash', 'rcrecs' and 'ncha'.
If this function later exits due to the failure of xdl_optimize_ctxs(),
then this xdlclassifier_t structure, and the memory allocated to it,
is not cleaned up.

In order to fix the memory leak, insert a call to xdl_free_classifier()
before returning.

Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
xdiff/xprepare.c
index 5ffcf996f046136eaaf3fc9657810dfae0bed4ab..13b55aba7441bc84d2c5c075110e9ef798ba18f8 100644 (file)
@@ -301,6 +301,7 @@ int xdl_prepare_env(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp,
 
                xdl_free_ctx(&xe->xdf2);
                xdl_free_ctx(&xe->xdf1);
+               xdl_free_classifier(&cf);
                return -1;
        }