Merge pull request #3 from gpakosz/patch-1

replaced free(in) by XFREE(in) at line 56
This commit is contained in:
Steffen Jaeckel 2011-07-12 06:01:19 -07:00
commit 5c9fa403ff

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;
} }
} }