X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=dict%2Fdclose.c;h=5a7a65ea793d7cd73cccfaf5f21f5302cd391ff3;hb=f69ee5ec6b2a86b7ac049992c19b9b0410705404;hp=701b0cbd0a7e9dffb4c1bbe623c6e30566653989;hpb=df82693c96b0691db2508139dea6fc4a03766193;p=idzebra-moved-to-github.git diff --git a/dict/dclose.c b/dict/dclose.c index 701b0cb..5a7a65e 100644 --- a/dict/dclose.c +++ b/dict/dclose.c @@ -11,10 +11,10 @@ int dict_bf_close (Dict_BFile dbf) int i; dict_bf_flush_blocks (dbf, -1); - free (dbf->all_blocks); - free (dbf->all_data); - free (dbf->hash_array); + xfree (dbf->all_blocks); + xfree (dbf->all_data); + xfree (dbf->hash_array); i = bf_close (dbf->bf); - free (dbf); + xfree (dbf); return i; }