1
0
mirror of git://erdgeist.org/opentracker synced 2025-01-14 08:50:10 +00:00

Forgot variable declaration

This commit is contained in:
erdgeist 2012-05-31 22:58:36 +00:00
parent f6c9dd8a13
commit eed4a42292

View File

@ -102,6 +102,7 @@ static int fullscrape_increase( int *iovec_entries, struct iovec **iovector,
/* When compressing, we have all the bytes in output buffer */ /* When compressing, we have all the bytes in output buffer */
#ifdef WANT_COMPRESSION_GZIP #ifdef WANT_COMPRESSION_GZIP
if( mode & TASK_FLAG_GZIP ) { if( mode & TASK_FLAG_GZIP ) {
int zres;
*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;