mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
a375d54785
Cf. PR #6787. Closes GH-6994.
19 lines
314 B
PHP
19 lines
314 B
PHP
--TEST--
|
|
Bug #66590 (imagewebp() doesn't pad to even length) - segfault
|
|
--EXTENSIONS--
|
|
gd
|
|
--SKIPIF--
|
|
<?php
|
|
if (!function_exists('imagewebp')) die('skip WebP support not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$im = imagecreatetruecolor(6, 6);
|
|
ob_start();
|
|
imagewebp($im);
|
|
ob_end_clean();
|
|
echo "ready\n";
|
|
?>
|
|
--EXPECT--
|
|
ready
|