From: Steffen Hansen Date: Mon, 10 Jun 2002 16:36:38 +0000 (+0000) Subject: typecast to make khz happy X-Git-Tag: gpgme-0-3-8~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2879352eb5632f1bd12cfe59851d2317866091ba;p=gpgme.git typecast to make khz happy --- diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index bfc7695..f448de3 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -2094,7 +2094,7 @@ struct CertificateInfo* nextCertificate( struct CertIterator* it ) struct DnPair* a = parse_dn( names[idx] ); if( idx == 0 ) { it->info.userid[idx] = reorder_dn( a ); - safe_free( &(names[idx]) ); + safe_free( (void **)&(names[idx]) ); } else { it->info.userid[idx] = names[idx]; it->info.dnarray = a;