aboutsummaryrefslogtreecommitdiffstats
path: root/gpgmeplug/gpgmeplug.c
diff options
context:
space:
mode:
authorKarl-Heinz Zimmer <[email protected]>2002-06-28 19:37:06 +0000
committerKarl-Heinz Zimmer <[email protected]>2002-06-28 19:37:06 +0000
commit054b78bdc062cb09bccdc0e4e465fc15af88f072 (patch)
tree1bbb639499d9e304a5a2dfb1eefb57a07ab5cce2 /gpgmeplug/gpgmeplug.c
parent* gpgmeplug.c (xmalloc): New. (diff)
downloadgpgme-054b78bdc062cb09bccdc0e4e465fc15af88f072.tar.gz
gpgme-054b78bdc062cb09bccdc0e4e465fc15af88f072.zip
Removed silly "free( dn )" statement forgotten during my last changes in findCertificates().
Diffstat (limited to '')
-rw-r--r--gpgmeplug/gpgmeplug.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c
index 62515840..fbaebaf3 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 );
}
}
}