gzip.c | 577 char *outbufp, *inbufp; local in function:gz_compress 589 inbufp = malloc(BUFLEN); 590 if (outbufp == NULL || inbufp == NULL) { 652 in_size = read(in, inbufp, BUFLEN); 662 crc = crc32(crc, (const Bytef *)inbufp, (unsigned)in_size); 664 z.next_in = (unsigned char *)inbufp; 732 if (inbufp != NULL) 733 free(inbufp); 751 char *outbufp, *inbufp; local in function:gz_uncompress 784 if ((inbufp = malloc(BUFLEN)) == NULL) [all...] |