bug62082.phpt 354 B

1234567891011121314
  1. --TEST--
  2. Bug #62082: Memory corruption in internal get_icu_disp_value_src_php()
  3. --EXTENSIONS--
  4. intl
  5. --FILE--
  6. <?php
  7. var_dump(locale_get_display_name(str_repeat("a", 300), null));
  8. var_dump(locale_get_display_name(str_repeat("a", 512), null));
  9. var_dump(locale_get_display_name(str_repeat("a", 600), null));
  10. ?>
  11. --EXPECT--
  12. bool(false)
  13. bool(false)
  14. bool(false)