1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.5'

* PHP-8.5:
  Fix zlib test for 8.5+
This commit is contained in:
Niels Dossche
2025-12-28 01:32:27 +01:00

View File

@@ -4,7 +4,7 @@ Test function gzseek() by seeking out of bounds
zlib
--FILE--
<?php
$f = __DIR__."/004.txt.gz";
$f = __DIR__."/data/test.txt.gz";
$h = gzopen($f, 'r');
var_dump(gzseek($h, -100, SEEK_CUR));