| Author | Dave Jarvis <email> |
|---|---|
| Date | 2026-02-09 22:28:18 GMT-0800 |
| Commit | 441a2764015dc73ccd628bf6497f4ebfc250dc22 |
| Parent | 0f005ad |
| } | ||
| + // Fix: Check for ZLIB_STREAM_END to prevent reading to EOF on small headers | ||
| while( !feof( $fileHandle ) && strlen( $headerData ) < 32 ) { | ||
| + if( inflate_get_status( $inflateContext ) === ZLIB_STREAM_END ) { | ||
| + break; | ||
| + } | ||
| + | ||
| $inflated = @inflate_add( | ||
| $inflateContext, |
| Delta | 5 lines added, 0 lines removed, 5-line increase |
|---|