mirror of
https://github.com/php/php-src.git
synced 2026-04-27 18:23:26 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
13 lines
205 B
PHP
13 lines
205 B
PHP
--TEST--
|
|
Bug #72241: get_icu_value_internal out-of-bounds read
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
$var1=str_repeat("A", 1000);
|
|
$out = locale_get_primary_language($var1);
|
|
var_dump($out);
|
|
?>
|
|
--EXPECT--
|
|
NULL
|