View | Details | Raw Unified | Return to bug 51872
Collapse All | Expand All

(-)a/lib/gvc/gvdevice.c (-1 / +1 lines)
Lines 347-353 Link Here
347
	z->avail_in = 0;
347
	z->avail_in = 0;
348
	z->next_out = df;
348
	z->next_out = df;
349
	z->avail_out = dfallocated;
349
	z->avail_out = dfallocated;
350
	while ((ret = deflate (z, Z_FINISH)) == Z_OK && (cnt++ <= 100)) {
350
	while ((ret = deflate (z, Z_FINISH)) == Z_OK) {
351
	    gvwrite_no_z(job, df, (size_t)(z->next_out - df));
351
	    gvwrite_no_z(job, df, (size_t)(z->next_out - df));
352
	    z->next_out = df;
352
	    z->next_out = df;
353
	    z->avail_out = dfallocated;
353
	    z->avail_out = dfallocated;

Return to bug 51872