X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/dc8f36ef94c2f26c339674d20d11b9708a923d73..f52f2db067dc1388b16ab00ddb53e26a381a6e3e:/key-file.c diff --git a/key-file.c b/key-file.c index 6e422b1..3245b93 100644 --- a/key-file.c +++ b/key-file.c @@ -7,7 +7,7 @@ * (c) 1999 Straylight/Edgeware */ -/*----- Licensing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This file is part of Catacomb. * @@ -15,12 +15,12 @@ * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. - * + * * Catacomb is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. - * + * * You should have received a copy of the GNU Library General Public * License along with Catacomb; if not, write to the Free * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, @@ -197,6 +197,9 @@ int key_save(key_file *f) unlink(n_new.buf); unlink(n_older.buf); + dstr_destroy(&n_new); + dstr_destroy(&n_old); + dstr_destroy(&n_older); return (KWRITE_OK); /* --- Failure while writing the new key file --- * @@ -254,16 +257,16 @@ fail_shift: dstr_destroy(&n_old); dstr_destroy(&n_older); return (rc); - -/* --- Failure during write of new data --- * - * - * Clean up the new file and return. These errors can never cause - * breakage. - */ + + /* --- Failure during write of new data --- * + * + * Clean up the new file and return. These errors can never cause + * breakage. + */ fail_write: unlink(n_new.buf); - fail_open: +fail_open: dstr_destroy(&n_new); return (rc); }