1--TEST--
2Bug #78833 (Integer overflow in pack causes out-of-bound access)
3--FILE--
4<?php
5try {
6    var_dump(pack("E2E2147483647H*", 0x0, 0x0, 0x0));
7} catch (ValueError $e) {
8    echo $e->getMessage(), "\n";
9}
10?>
11--EXPECT--
12Type E: too few arguments
13