X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fcallfcgi.c;h=a6d394569268fb53a8e9909e5a8697a9580627ea;hb=107aa2ef0fb1cc1b79d5ad832af02a2ee29a5cf8;hp=d36e98c7e024c145488467d3ce7838cd56dd8a36;hpb=381f9919d2b5a84bb72b1dec33623c5e6bbf1f6e;p=ashd.git diff --git a/src/callfcgi.c b/src/callfcgi.c index d36e98c..a6d3945 100644 --- a/src/callfcgi.c +++ b/src/callfcgi.c @@ -208,7 +208,7 @@ static void startlisten(void) close(i); execvp(*progspec, progspec); flog(LOG_ERR, "callfcgi: %s: %s", *progspec, strerror(errno)); - exit(127); + _exit(127); } close(fd); } @@ -226,13 +226,13 @@ static void startnolisten(void) close(i); if((fd = open("/dev/null", O_RDONLY)) < 0) { flog(LOG_ERR, "/dev/null: %s", strerror(errno)); - exit(127); + _exit(127); } dup2(fd, 0); close(fd); execvp(*progspec, progspec); flog(LOG_ERR, "callfcgi: %s: %s", *progspec, strerror(errno)); - exit(127); + _exit(127); } } @@ -611,12 +611,12 @@ static int recvrec(FILE *in, int *type, int *rid, char **data, size_t *dlen) return(-1); *data = smalloc(max(*dlen, 1)); if(fread(*data, 1, *dlen, in) != *dlen) { - free(data); + free(*data); return(-1); } for(; pl > 0; pl--) { if(fgetc(in) == EOF) { - free(data); + free(*data); return(-1); } }