diff options
author | Marcus Brinkmann <[email protected]> | 2001-11-21 21:08:02 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2001-11-21 21:08:02 +0000 |
commit | adfc1ccd5d974ca9973c32fac5a42e403c42de4e (patch) | |
tree | 6cbd4c66b84d690bb992dc8a30dd27a45a99303c | |
parent | 2001-11-21 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-adfc1ccd5d974ca9973c32fac5a42e403c42de4e.tar.gz gpgme-adfc1ccd5d974ca9973c32fac5a42e403c42de4e.zip |
2001-11-21 Marcus Brinkmann <[email protected]>
* gpgmeplug.c: Include config.h only if [HAVE_CONFIG_H]. Do not
include util.h.
(deinitialize): Use free, not _gpgme_free.
(setDirectoryServers): Use calloc, not xtrycalloc. Use free, not
_gpgme_free. Use malloc instead xtrymalloc.
(appendDirectoryServer): Use realloc, not xtryrealloc.
-rw-r--r-- | gpgmeplug/gpgmeplug.c | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index 73451d65..84ecb689 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -42,7 +42,9 @@ \see cryptplug.h */ +#ifdef HAVE_CONFIG_H #include <config.h> +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -50,7 +52,6 @@ #include <errno.h> #include <gpgme.h> -#include <util.h> #include "cryptplug.h" @@ -145,10 +146,10 @@ void deinitialize() { unsigned int i; for( i = 0; i < config.numDirectoryServers; ++i ) { - _gpgme_free( (char *)config.directoryServers[i].servername ); - _gpgme_free( (char *)config.directoryServers[i].description ); + free( (char *)config.directoryServers[i].servername ); + free( (char *)config.directoryServers[i].description ); } - _gpgme_free( config.directoryServers ); + free( config.directoryServers ); } @@ -584,17 +585,17 @@ void appendDirectoryServer( const char* servername, const char* description ) { struct DirectoryServer *newServers = NULL; - newServers = xtryrealloc( config.directoryServers, - (1+config.numDirectoryServers) * sizeof *newServers ); + newServers = realloc( config.directoryServers, + (1+config.numDirectoryServers) * sizeof *newServers ); if( newServers ) { config.directoryServers = newServers; newServers[ config.numDirectoryServers ].servername = - xtrymalloc( strlen( servername ) ); + malloc( strlen( servername ) ); if( newServers[ config.numDirectoryServers ].servername ) { strcpy( (char *)newServers[ config.numDirectoryServers ].servername, servername ); newServers[ config.numDirectoryServers ].description = - xtrymalloc( strlen( description ) ); + malloc( strlen( description ) ); if( newServers[ config.numDirectoryServers ].description ) { strcpy( (char *)newServers[ config.numDirectoryServers ].description, description ); @@ -610,18 +611,18 @@ void setDirectoryServers( struct DirectoryServer server[], unsigned int size ) unsigned int i; int oldSize = config.numDirectoryServers; struct DirectoryServer *newServers = NULL; - newServers = xtrycalloc ( size, sizeof *newServers ); + newServers = calloc ( size, sizeof *newServers ); if( newServers ) { for( i=0; i < oldSize; ++i ) { - _gpgme_free( (char *)config.directoryServers[i].servername ); - _gpgme_free( (char *)config.directoryServers[i].description ); + free( (char *)config.directoryServers[i].servername ); + free( (char *)config.directoryServers[i].description ); } - _gpgme_free( config.directoryServers ); + free( config.directoryServers ); for( i=0; i < size; ++i ) { - newServers[ i ].servername = xtrymalloc( strlen( server[i].servername ) ); + newServers[ i ].servername = malloc( strlen( server[i].servername ) ); if( newServers[ i ].servername ) { strcpy( (char *)newServers[ i ].servername, server[i].servername ); - newServers[ i ].description = xtrymalloc( strlen( server[i].description ) ); + newServers[ i ].description = malloc( strlen( server[i].description ) ); if( newServers[ i ].description ) { strcpy( (char *)newServers[ i ].description, server[i].description ); newServers[ i ].port = server[i].port; |