Commit 8fafe0f8 authored by Sergei Golubchik's avatar Sergei Golubchik

missing DBUG_RETURN

parent 824cc1c0
...@@ -7342,7 +7342,8 @@ int util_query(MYSQL* org_mysql, const char* query){ ...@@ -7342,7 +7342,8 @@ int util_query(MYSQL* org_mysql, const char* query){
cur_con->util_mysql= mysql; cur_con->util_mysql= mysql;
} }
return mysql_query(mysql, query); int ret= mysql_query(mysql, query);
DBUG_RETURN(ret);
} }
......
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