summaryrefslogtreecommitdiff
path: root/ext/gd/tests/bug70976.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/tests/bug70976.phpt')
-rw-r--r--ext/gd/tests/bug70976.phpt13
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/gd/tests/bug70976.phpt b/ext/gd/tests/bug70976.phpt
new file mode 100644
index 0000000000..23af4eedc7
--- /dev/null
+++ b/ext/gd/tests/bug70976.phpt
@@ -0,0 +1,13 @@
+--TEST--
+Bug #70976 (Memory Read via gdImageRotateInterpolated Array Index Out of Bounds)
+--SKIPIF--
+<?php
+ if(!extension_loaded('gd')){ die('skip gd extension not available'); }
+?>
+--FILE--
+<?php
+$img = imagerotate(imagecreate(1,1),45,0x7ffffff9);
+var_dump($img);
+?>
+--EXPECTF--
+bool(false) \ No newline at end of file