mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
build fix for aix and others
libmysql/libmysql.c: build fix: DBUG_ENTER can't be this late
This commit is contained in:
parent
478fb4a14d
commit
a85d1b2e5e
1 changed files with 3 additions and 3 deletions
|
@ -4681,14 +4681,14 @@ int cli_read_binary_rows(MYSQL_STMT *stmt)
|
|||
MYSQL_ROWS *cur, **prev_ptr= &result->data;
|
||||
NET *net;
|
||||
|
||||
DBUG_ENTER("cli_read_binary_rows");
|
||||
|
||||
if (!mysql)
|
||||
{
|
||||
set_stmt_error(stmt, CR_SERVER_LOST, unknown_sqlstate);
|
||||
return 1;
|
||||
DBUG_RETURN(1);
|
||||
}
|
||||
|
||||
DBUG_ENTER("cli_read_binary_rows");
|
||||
|
||||
net = &mysql->net;
|
||||
mysql= mysql->last_used_con;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue