Skip to content

Commit

Permalink
Merge pull request libtom#3 from gpakosz/patch-1
Browse files Browse the repository at this point in the history
replaced free(in) by XFREE(in) at line 56
  • Loading branch information
sjaeckel committed Jul 12, 2011
2 parents 8859f6e + 1346ccd commit 5c9fa40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pk/asn1/der/sequence/der_sequence_free.c
Expand Up @@ -53,7 +53,7 @@ void der_sequence_free(ltc_asn1_list *in)

/* move to next and free current */
l = in->next;
free(in);
XFREE(in);
in = l;
}
}
Expand Down

0 comments on commit 5c9fa40

Please sign in to comment.