- Added "consumed" stream filter. (Marcus)
- Added new mysqli constants for BIT and NEW_DECIMAL field types:
MYSQLI_TYPE_NEWDECIMAL and MYSQLI_TYPE_BIT. FR #36007. (Georg)
+- Fixed bug #36038 (ext/hash compile failure on Mac OSX). (Tony)
- Fixed bug #36016 (realpath cache memleaks). (Dmitry, Nuno)
- Fixed bug #36011 (Strict errormsg wrong for call_user_func() and the likes).
(Marcus)
static inline void php_hash_bin2hex(char *out, const unsigned char *in, int in_len)
{
- static const char hexits[16] = "0123456789abcdef";
+ static const char hexits[17] = "0123456789abcdef";
int i;
for(i = 0; i < in_len; i++) {