diff options
author | Andrey Hristov <andrey@php.net> | 2014-07-31 21:28:19 +0300 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2014-07-31 21:28:19 +0300 |
commit | 1d609d2d262944d5a897a31d49b93f8f732f6a03 (patch) | |
tree | 0d47d1806fc2f28cfc4476cdf2d941e872adf892 | |
parent | d5542c4a17e61d6d6def55ae0de3978aa2dc555b (diff) | |
parent | f5deb18b205f89cb6708f97f451b43ad5ece4197 (diff) | |
download | php-git-1d609d2d262944d5a897a31d49b93f8f732f6a03.tar.gz |
Merge branch 'PHP-5.6'
-rw-r--r-- | ext/mysqlnd/mysqlnd_wireprotocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.c b/ext/mysqlnd/mysqlnd_wireprotocol.c index ecce71d9c2..83ae2a7977 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.c +++ b/ext/mysqlnd/mysqlnd_wireprotocol.c @@ -226,7 +226,7 @@ php_mysqlnd_net_store_length_size(uint64_t length) if (length < (uint64_t) L64(16777216)) { return 4; } - return 8; + return 9; } /* }}} */ |