replaced free(in) by XFREE(in) at line 56

This commit is contained in:
Gregory Pakosz 2011-07-12 05:56:48 -07:00
parent 8859f6e73d
commit 1346ccdee8

View File

@ -53,7 +53,7 @@ void der_sequence_free(ltc_asn1_list *in)
/* move to next and free current */ /* move to next and free current */
l = in->next; l = in->next;
free(in); XFREE(in);
in = l; in = l;
} }
} }