[BACK]Return to gzopen.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / compress

Diff for /src/usr.bin/compress/gzopen.c between version 1.28 and 1.29

version 1.28, 2015/01/16 06:40:06 version 1.29, 2015/08/20 22:32:41
Line 115 
Line 115 
                 errno = EINVAL;                  errno = EINVAL;
                 return NULL;                  return NULL;
         }          }
         if ((s = (gz_stream *)calloc(1, sizeof(gz_stream))) == NULL)          if ((s = calloc(1, sizeof(gz_stream))) == NULL)
                 return NULL;                  return NULL;
   
         s->z_stream.zalloc = (alloc_func)0;          s->z_stream.zalloc = (alloc_func)0;

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29