2005-04-11 Marcus Brinkmann <marcus@g10code.de>

* simple-pwquery.c (simple_pwquery): Use spwq_secure_free.
This commit is contained in:
Marcus Brinkmann 2005-04-10 22:12:31 +00:00
parent 6ece9a0de9
commit c5b1095b6d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-04-11 Marcus Brinkmann <marcus@g10code.de>
* simple-pwquery.c (simple_pwquery): Use spwq_secure_free.
2005-03-03 Werner Koch <wk@g10code.com>
* Makefile.am (AM_CFLAGS): Added PTH_CFLAGS. Noted by Kazu Yamamoto.

View File

@ -541,7 +541,7 @@ simple_pwquery (const char *cacheid,
if (fd != -1)
close (fd);
if (pw)
spwq_free (pw);
spwq_secure_free (pw);
return result;
}