lavabit / libdime

The DIME resolver library and command line utilities.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

memory leaks in mrec.c

MegaManSec opened this issue · comments

In /lib/mrec.c:

304 RET_ERROR_PTR(ERR_NOMEM, "unable to allocate space for DIME record copy");
leaks 'result'

679 RET_ERROR_PTR(ERR_UNSPEC, "could not parse DIME management record");
and
689 return result;

leaks 'fp'.
(note the code 2 lines above L679)

commented

Fixed

Fixed, closing.