Commit 14e5de8a authored by unknown's avatar unknown

Fix two missing DBUG_RETURN.

parent 23fa4551
...@@ -4634,7 +4634,7 @@ int STDCALL mysql_stmt_fetch_column(MYSQL_STMT *stmt, MYSQL_BIND *my_bind, ...@@ -4634,7 +4634,7 @@ int STDCALL mysql_stmt_fetch_column(MYSQL_STMT *stmt, MYSQL_BIND *my_bind,
if ((int) stmt->state < (int) MYSQL_STMT_FETCH_DONE) if ((int) stmt->state < (int) MYSQL_STMT_FETCH_DONE)
{ {
set_stmt_error(stmt, CR_NO_DATA, unknown_sqlstate, NULL); set_stmt_error(stmt, CR_NO_DATA, unknown_sqlstate, NULL);
return 1; DBUG_RETURN(1);
} }
if (column >= stmt->field_count) if (column >= stmt->field_count)
{ {
......
...@@ -16295,6 +16295,8 @@ static void test_bug27876() ...@@ -16295,6 +16295,8 @@ static void test_bug27876()
rc= mysql_query(mysql, "set names default"); rc= mysql_query(mysql, "set names default");
myquery(rc); myquery(rc);
DBUG_VOID_RETURN;
} }
......
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