From ee970fa57d2fbcbebbae7ada2f33042ba81ae98b Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Fri, 28 Jun 2002 18:30:23 +0000 Subject: * gpgmeplug.c (xmalloc): New. (safe_malloc): Removed this macro and replaced it at all places without return values checks by xmalloc. (xstrdup): New. Replaces funny named macro with different semantics. Changed all callers to the new semantic. (findCertificates): Don't free duplicate free the FPR array values. Removed the unneeded initialization. Replaces the gcc-ish use dynamic allocation of automatic variables by repalce maxCerts with a macro MAXCERTS. Made some comments Real C (tm). (startListCertificates): Removed uneeded cast from xmalloc. --- gpgmeplug/ChangeLog | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'gpgmeplug/ChangeLog') diff --git a/gpgmeplug/ChangeLog b/gpgmeplug/ChangeLog index 3ff7ce1a..85bc4ed7 100644 --- a/gpgmeplug/ChangeLog +++ b/gpgmeplug/ChangeLog @@ -1,3 +1,16 @@ +2002-06-28 Werner Koch + + * gpgmeplug.c (xmalloc): New. + (safe_malloc): Removed this macro and replaced it at all places + without return values checks by xmalloc. + (xstrdup): New. Replaces funny named macro with different + semantics. Changed all callers to the new semantic. + (findCertificates): Don't free duplicate free the FPR array + values. Removed the unneeded initialization. Replaces the + gcc-ish use dynamic allocation of automatic variables by repalce + maxCerts with a macro MAXCERTS. Made some comments Real C (tm). + (startListCertificates): Removed uneeded cast from xmalloc. + 2002-06-28 Bernhard Reiter * gpgmeplug.c: new macro days_to_seconds(). -- cgit