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

Fixed new introduced bug in binlog.test with --ps-protocol

This commit is contained in:
monty@mysql.com
2006-02-25 13:24:18 +02:00
parent 82b77cdd90
commit dd1d40f8f8
3 changed files with 8 additions and 7 deletions

View File

@ -14724,9 +14724,9 @@ static void test_bug12744()
mysql_close(mysql);
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
{