mirror of
https://github.com/php/php-src.git
synced 2026-04-24 16:38:25 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
14 lines
219 B
PHP
14 lines
219 B
PHP
--TEST--
|
|
Phar: bug #71354: Heap corruption in tar/zip/phar parser.
|
|
--EXTENSIONS--
|
|
phar
|
|
--FILE--
|
|
<?php
|
|
$p = new PharData(__DIR__."/bug71354.tar");
|
|
var_dump($p['aaaa']->getContent());
|
|
?>
|
|
DONE
|
|
--EXPECT--
|
|
string(0) ""
|
|
DONE
|