Fix RPrint.strconv_mode memleak

This commit is contained in:
pancake 2018-03-14 12:37:11 +01:00
parent 6b633ae0aa
commit 1b30ca283c

View File

@ -314,6 +314,7 @@ R_API RPrint* r_print_free(RPrint *p) {
}
sdb_free (p->formats);
p->formats = NULL;
R_FREE (p->strconv_mode);
if (p->zoom) {
free (p->zoom->buf);
free (p->zoom);