|    14 |     Byte *compr    = (Byte*)calloc((uInt)comprLen, 1); | 
 |                             ^~~~~~~~~~~~~~~~~~~~~~~~~ | 
 |                             | | 
 |                             (1) allocated here | 
|    15 |     Byte *uncompr  = (Byte*)calloc((uInt)uncomprLen, 1); | 
|    16 |     if (compr == Z_NULL || uncompr == Z_NULL) | 
 |        ~                      | 
 |        | | 
 |        (2) assuming ‘compr’ is non-NULL | 
 |        (3) following ‘false’ branch (when ‘compr’ is non-NULL)... |