1--TEST--
2Bug #67249 (printf out-of-bounds read)
3--FILE--
4<?php
5try {
6    var_dump(sprintf("%'", "foo"));
7} catch (ValueError $e) {
8    echo $e->getMessage(), "\n";
9}
10?>
11--EXPECT--
12Missing padding character
13