code cleanup

This commit is contained in:
Aurelien Foret 2006-03-02 19:02:35 +00:00
parent 79f4b5acf4
commit 3eebe8fc2b
3 changed files with 9 additions and 6 deletions

View file

@ -25,7 +25,10 @@
#include <string.h> #include <string.h>
/* pacman */ /* pacman */
#include "util.h" #include "util.h"
#include "error.h"
#include "log.h"
#include "group.h" #include "group.h"
#include "alpm.h"
pmgrp_t *_alpm_grp_new() pmgrp_t *_alpm_grp_new()
{ {
@ -33,7 +36,9 @@ pmgrp_t *_alpm_grp_new()
grp = (pmgrp_t *)malloc(sizeof(pmgrp_t)); grp = (pmgrp_t *)malloc(sizeof(pmgrp_t));
if(grp == NULL) { if(grp == NULL) {
return(NULL); _alpm_log(PM_LOG_ERROR, "malloc failure: could not allocate %d bytes",
sizeof(pmgrp_t));
RET_ERR(PM_ERR_MEMORY, NULL);
} }
grp->name[0] = '\0'; grp->name[0] = '\0';

View file

@ -25,9 +25,7 @@
#include <time.h> #include <time.h>
#include <fcntl.h> #include <fcntl.h>
#include <string.h> #include <string.h>
#ifdef CYGWIN #include <limits.h>
#include <limits.h> /* PATH_MAX */
#endif
#include <zlib.h> #include <zlib.h>
#include <libtar.h> #include <libtar.h>
/* pacman */ /* pacman */