mirror of
git://erdgeist.org/opentracker
synced 2025-04-20 11:41:06 +08:00
reduce zlib warnings to when there really is something failing
This commit is contained in:
parent
7d36ea2732
commit
f6c9dd8a13
@ -105,7 +105,8 @@ static int fullscrape_increase( int *iovec_entries, struct iovec **iovector,
|
|||||||
*re -= OT_SCRAPE_MAXENTRYLEN;
|
*re -= OT_SCRAPE_MAXENTRYLEN;
|
||||||
strm->next_out = (uint8_t*)*r;
|
strm->next_out = (uint8_t*)*r;
|
||||||
strm->avail_out = OT_SCRAPE_CHUNK_SIZE;
|
strm->avail_out = OT_SCRAPE_CHUNK_SIZE;
|
||||||
if( deflate( strm, zaction ) < Z_OK )
|
zres = deflate( strm, zaction );
|
||||||
|
if( ( zres < Z_OK ) && ( zres != Z_BUF_ERROR ) )
|
||||||
fprintf( stderr, "deflate() failed while in fullscrape_increase(%d).\n", zaction );
|
fprintf( stderr, "deflate() failed while in fullscrape_increase(%d).\n", zaction );
|
||||||
*r = (char*)strm->next_out;
|
*r = (char*)strm->next_out;
|
||||||
}
|
}
|
||||||
@ -191,9 +192,11 @@ static void fullscrape_make( int *iovec_entries, struct iovec **iovector, ot_tas
|
|||||||
|
|
||||||
#ifdef WANT_COMPRESSION_GZIP
|
#ifdef WANT_COMPRESSION_GZIP
|
||||||
if( mode & TASK_FLAG_GZIP ) {
|
if( mode & TASK_FLAG_GZIP ) {
|
||||||
|
int zres;
|
||||||
strm.next_in = (uint8_t*)compress_buffer;
|
strm.next_in = (uint8_t*)compress_buffer;
|
||||||
strm.avail_in = r - compress_buffer;
|
strm.avail_in = r - compress_buffer;
|
||||||
if( deflate( &strm, Z_NO_FLUSH ) < Z_OK )
|
zres = deflate( &strm, Z_NO_FLUSH );
|
||||||
|
if( ( zres < Z_OK ) && ( zres != Z_BUF_ERROR ) )
|
||||||
fprintf( stderr, "deflate() failed while in fullscrape_make().\n" );
|
fprintf( stderr, "deflate() failed while in fullscrape_make().\n" );
|
||||||
r = (char*)strm.next_out;
|
r = (char*)strm.next_out;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user