Skip to content

Commit

Permalink
Fix memory leak in unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
9EOR9 committed Apr 26, 2023
1 parent 2c5bb13 commit f5a4c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittest/libmariadb/ps_bugs.c
Original file line number Diff line number Diff line change
Expand Up @@ -5514,7 +5514,7 @@ static int test_conc627(MYSQL *mysql)
static int test_conc633(MYSQL *mysql)
{
MYSQL_STMT *stmt= mysql_stmt_init(mysql);
MYSQL *my= mysql_init(NULL);
MYSQL *my= NULL;
int ret= FAIL;
int rc;

Expand Down

0 comments on commit f5a4c73

Please sign in to comment.