1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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

mysql-test/t/binlog.test:
  Fixed --ps-protocol (Side effect from last patch)
sql/sql_db.cc:
  Removed compiler warning
  Fixed memory loss on slave
tests/mysql_client_test.c:
  Removed compiler warnings
This commit is contained in:
unknown
2006-02-25 13:24:18 +02:00
parent 0afb6ff660
commit 3093b5fea7
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
{