Fix mxs1776_ps_exec_hang

The results weren't freed between the fetches.
This commit is contained in:
Markus Mäkelä 2018-09-25 08:22:22 +03:00
parent 4ed0ef046e
commit 50bec07438
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19

View File

@ -154,6 +154,7 @@ int main(int argc, char* argv[])
while (mysql_stmt_fetch(stmt) == 0)
{
mysql_query(conn, "SELECT 1");
mysql_free_result(mysql_store_result(conn));
}
return rval;