From: Karl-Heinz Zimmer Date: Fri, 28 Jun 2002 19:37:06 +0000 (+0000) Subject: Removed silly "free( dn )" statement forgotten during my last changes in findCertific... X-Git-Tag: dd9jn_pre_test_20020702~11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=054b78bdc062cb09bccdc0e4e465fc15af88f072;p=gpgme.git Removed silly "free( dn )" statement forgotten during my last changes in findCertificates(). --- diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index 6251584..fbaebaf 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -2300,7 +2300,7 @@ bool findCertificates( const char* addressee, bool secretOnly ) { #define MAXCERTS 1024; - /* use const char declarations since all of them are needed twice *. + /* use const char declarations since all of them are needed twice */ const char* delimiter = "\1"; const char* openBracket = " ("; const char* closeBracket = ")"; @@ -2363,7 +2363,6 @@ bool findCertificates( const char* addressee, break; } } - free( dn ); } } }