Commit c46c1258 authored by unknown's avatar unknown

Make PACKET_TOO_LARGE error handling safer in client


libmysql/libmysql.c:
  Make PACKET_TOO_LARGE error handling safer
parent 8d25a3fd
......@@ -460,21 +460,19 @@ simple_command(MYSQL *mysql,enum enum_server_command command, const char *arg,
{
net->last_errno=CR_NET_PACKET_TOO_LARGE;
strmov(net->last_error,ER(net->last_errno));
return(packet_error);
goto end;
}
else
{
end_server(mysql);
if (mysql_reconnect(mysql) ||
net_write_command(net,(uchar) command,arg,
if (mysql_reconnect(mysql))
goto end;
if (net_write_command(net,(uchar) command,arg,
length ? length : (ulong) strlen(arg)))
{
net->last_errno=CR_SERVER_GONE_ERROR;
net->last_errno= CR_SERVER_GONE_ERROR;
strmov(net->last_error,ER(net->last_errno));
goto end;
}
}
}
result=0;
if (!skipp_check)
result= ((mysql->packet_length=net_safe_read(mysql)) == packet_error ?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment