index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | lib/libalpm/trans.c | 5 |
diff --git a/lib/libalpm/trans.c b/lib/libalpm/trans.c index b8f87371..1f9f225a 100644 --- a/lib/libalpm/trans.c +++ b/lib/libalpm/trans.c @@ -229,10 +229,7 @@ pmtrans_t *_alpm_trans_new() ALPM_LOG_FUNC; - if((trans = malloc(sizeof(pmtrans_t))) == NULL) { - _alpm_log(PM_LOG_ERROR, _("malloc failure: could not allocate %d bytes\n"), sizeof(pmtrans_t)); - return(NULL); - } + CALLOC(trans, 1, sizeof(pmtrans_t), RET_ERR(PM_ERR_MEMORY, NULL)); trans->targets = NULL; trans->packages = NULL; |