1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Cleanup during review of new pushed code

This commit is contained in:
monty@mysql.com
2006-03-30 03:11:37 +03:00
parent 84e7c9633a
commit c04660e85e
3 changed files with 12 additions and 16 deletions

View File

@ -11719,13 +11719,13 @@ static void test_bug12744()
rc= mysql_kill(mysql, mysql_thread_id(mysql));
DIE_UNLESS(rc==0);
if (rc= mysql_stmt_execute(prep_stmt))
if ((rc= mysql_stmt_execute(prep_stmt)))
{
if (rc= mysql_stmt_reset(prep_stmt))
if ((rc= mysql_stmt_reset(prep_stmt)))
printf("OK!\n");
else
{
printf("Error!");
printf("Error!\n");
DIE_UNLESS(1==0);
}
}