1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

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

This commit is contained in:
Chad MILLER
2008-07-15 12:51:05 -04:00
parent dae4c823e9
commit 0bc1862f8a

View File

@ -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;