Use xmalloc/xcalloc
authorH. Peter Anvin <hpa@smyrno.hos.anvin.org>
Fri, 30 Sep 2005 17:47:50 +0000 (10:47 -0700)
committerH. Peter Anvin <hpa@smyrno.hos.anvin.org>
Fri, 30 Sep 2005 17:47:50 +0000 (10:47 -0700)
daemon.c

index b6006c7..6298f53 100644 (file)
--- a/daemon.c
+++ b/daemon.c
@@ -463,9 +463,7 @@ static int socksetup(int port, int **socklist_p)
                return 0;
        }
 
-       *socklist_p = malloc(sizeof(int));
-       if ( !*socklist_p )
-               die("memory allocation failed: %s", strerror(errno));
+       *socklist_p = xmalloc(sizeof(int));
        **socklist_p = sockfd;
 }
 
@@ -476,9 +474,7 @@ static int service_loop(int socknum, int *socklist)
        struct pollfd *pfd;
        int i;
 
-       pfd = calloc(socknum, sizeof(struct pollfd));
-       if (!pfd)
-               die("memory allocation failed: %s", strerror(errno));
+       pfd = xcalloc(socknum, sizeof(struct pollfd));
 
        for (i = 0; i < socknum; i++) {
                pfd[i].fd = socklist[i];