Fixed packet-test bug caused by if block that didn't have curly braces.
This commit is contained in:
parent
a4e7283a92
commit
a8cbbef15c
@ -1559,8 +1559,10 @@ static bool do_command(THD *thd)
|
|||||||
/* Check if we can continue without closing the connection */
|
/* Check if we can continue without closing the connection */
|
||||||
|
|
||||||
if (net->error != 3)
|
if (net->error != 3)
|
||||||
|
{
|
||||||
return_value= TRUE; // We have to close it.
|
return_value= TRUE; // We have to close it.
|
||||||
goto out;
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
net_send_error(thd, net->last_errno, NullS);
|
net_send_error(thd, net->last_errno, NullS);
|
||||||
net->error= 0;
|
net->error= 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user