Commit 0bc1862f authored by Chad MILLER's avatar Chad MILLER

Fixed packet-test bug caused by if block that didn't have curly braces.

parent dae4c823
......@@ -1559,8 +1559,10 @@ static bool do_command(THD *thd)
/* Check if we can continue without closing the connection */
if (net->error != 3)
{
return_value= TRUE; // We have to close it.
goto out;
}
net_send_error(thd, net->last_errno, NullS);
net->error= 0;
......
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