mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
Fixed wrong packed length for packet > 16M.
sql/net_pkg.cc: Fixed wrong packed length for packet > 16M. (Not used in 3.23)
This commit is contained in:
parent
9efb607e11
commit
b77dcb19e6
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ net_store_length(char *pkg, ulonglong length)
|
|||
}
|
||||
*packet++=254;
|
||||
int8store(packet,length);
|
||||
return (char*) packet+9;
|
||||
return (char*) packet+8;
|
||||
}
|
||||
|
||||
char *
|
||||
|
|
Loading…
Reference in a new issue