From ce194bdd5ed1ed625dfb6384be7650899e211c3a Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Tue, 14 Feb 2006 18:48:13 +0000 Subject: used MALLOC macro when possible --- src/pacman/conf.c | 16 +++------------- src/pacman/pacman.c | 4 ---- 2 files changed, 3 insertions(+), 17 deletions(-) (limited to 'src') diff --git a/src/pacman/conf.c b/src/pacman/conf.c index 1ab2daef..70d953e1 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -42,10 +42,7 @@ config_t *config_new() { config_t *config; - config = (config_t *)malloc(sizeof(config_t)); - if(config == NULL) { - return(NULL); - } + MALLOC(config, sizeof(config_t)); memset(config, 0, sizeof(config_t)); @@ -123,11 +120,7 @@ int parseconfig(char *file, config_t *config) } if(!found) { /* start a new sync record */ - sync = (sync_t *)malloc(sizeof(sync_t)); - if(sync == NULL) { - ERR(NL, "could not allocate %d bytes\n", sizeof(sync_t)); - return(1); - } + MALLOC(sync, sizeof(sync_t)); sync->treename = strdup(section); sync->servers = NULL; pmc_syncs = list_add(pmc_syncs, sync); @@ -292,10 +285,7 @@ int parseconfig(char *file, config_t *config) server_t *server; char *p; - if((server = (server_t *)malloc(sizeof(server_t))) == NULL) { - ERR(NL, "could not allocate %d bytes\n", sizeof(server_t)); - return(1); - } + MALLOC(server, sizeof(server_t)); server->server = server->path = NULL; server->protocol = NULL; diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 8930d064..75ce1bca 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -86,10 +86,6 @@ int main(int argc, char *argv[]) /* init config data */ config = config_new(); - if(config == NULL) { - ERR(NL, "could not allocate memory for pacman config data.\n"); - return(1); - } config->op = PM_OP_MAIN; config->debug |= PM_LOG_WARNING; -- cgit v1.2.3-24-g4f1b