diff options
author | George Wang <gwang@php.net> | 2014-09-03 11:28:30 -0400 |
---|---|---|
committer | George Wang <gwang@php.net> | 2014-09-03 11:28:30 -0400 |
commit | b16929ca7294fb047e63eb6c04d715d980a50c47 (patch) | |
tree | e8ccc6acd38dbf670380cccc500100279d74f53d /ext/mysqlnd/mysqlnd_wireprotocol.c | |
parent | bba16dde5ded45802543712bb3b9fe6e93b10751 (diff) | |
parent | 9266227402f50e1ad9953952b68a5ff3a25806b0 (diff) | |
download | php-git-b16929ca7294fb047e63eb6c04d715d980a50c47.tar.gz |
Merge branch 'PHP-5.5' of git.php.net:php-src into PHP-5.5
Diffstat (limited to 'ext/mysqlnd/mysqlnd_wireprotocol.c')
-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 dfdba4084e..348b5640e4 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; } /* }}} */ |