X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/d901c8888560a1745ecee7c8d5ddad6229aafc66..12ed8a1f566d8c2020b988462db74435c716088a:/key-pass.c?ds=sidebyside diff --git a/key-pass.c b/key-pass.c index 7e02daf..bdc992a 100644 --- a/key-pass.c +++ b/key-pass.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: key-pass.c,v 1.5 2004/04/08 01:36:15 mdw Exp $ + * $Id$ * * Encrypting keys with passphrases * @@ -226,14 +226,14 @@ int key_punlock(const char *tag, key_data *k, key_data *kt) /* --- Done --- */ - free(p); + xfree(p); return (0); /* --- Tidy up if things went wrong --- */ fail: BURN(b); - free(p); + xfree(p); return (-1); }