mirror of
https://github.com/php/php-src.git
synced 2026-04-20 06:21:12 +02:00
For rationale, see https://github.com/php/php-src/pull/6787 Make extension checks lowercase, add a special case for opcache that has internal name not matching .so filename. Extensions migrated in part 2: * dom * exif * fileinfo * ffi
15 lines
265 B
PHP
15 lines
265 B
PHP
--TEST--
|
|
Bug #76164 (exif_read_data zend_mm_heap corrupted)
|
|
--EXTENSIONS--
|
|
exif
|
|
--FILE--
|
|
<?php
|
|
$var1 = 'nonexistentfile';
|
|
$var2 = 2200000000;
|
|
@exif_read_data($var1, $var2); // we're not interested in the warning, here
|
|
$var2 = 1;
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|