summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2014-07-31 21:28:09 +0300
committerAndrey Hristov <andrey@php.net>2014-07-31 21:28:09 +0300
commitf5deb18b205f89cb6708f97f451b43ad5ece4197 (patch)
tree743306eadb6da98f0ee52cf9819ff7dd01c6f592
parent6a4f0b14eb347285e130719fb6b3ecf29bc1e36b (diff)
parent95febf26c67b7ccb8703dc8b005658ebd851cb89 (diff)
downloadphp-git-f5deb18b205f89cb6708f97f451b43ad5ece4197.tar.gz
Merge branch 'PHP-5.5' into PHP-5.6
-rw-r--r--ext/mysqlnd/mysqlnd_wireprotocol.c2
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;
}
/* }}} */