summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2014-07-31 21:27:51 +0300
committerAndrey Hristov <andrey@php.net>2014-07-31 21:27:51 +0300
commit95febf26c67b7ccb8703dc8b005658ebd851cb89 (patch)
treefbe93bdb415051eda3ee43e204aa954946769ada
parentc2f2d5c8fc804bfc4ab315c4f54e6257b5c2bc57 (diff)
downloadphp-git-95febf26c67b7ccb8703dc8b005658ebd851cb89.tar.gz
Fix wrong lenght size
-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 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;
}
/* }}} */