X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/b817bfc642225b8c3c0b6a7e42d1fb949b61a606..986e45b7528e1b5ca8b640088a7f2422a707f357:/key-pass.c 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); }