mirror of
https://github.com/MariaDB/server.git
synced 2025-06-13 13:01:51 +03:00
5.5 merge
This commit is contained in:
@ -2131,7 +2131,14 @@ int cli_stmt_execute(MYSQL_STMT *stmt)
|
||||
DBUG_RETURN(1);
|
||||
}
|
||||
|
||||
net_clear(net, 1); /* Sets net->write_pos */
|
||||
if (net->vio)
|
||||
net_clear(net, 1); /* Sets net->write_pos */
|
||||
else
|
||||
{
|
||||
set_stmt_errmsg(stmt, net);
|
||||
DBUG_RETURN(1);
|
||||
}
|
||||
|
||||
/* Reserve place for null-marker bytes */
|
||||
null_count= (stmt->param_count+7) /8;
|
||||
if (my_realloc_str(net, null_count + 1))
|
||||
|
Reference in New Issue
Block a user