From 547fc4987b34594fd8fb7665aba88f2b5a5c6b01 Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Mon, 26 Jul 2021 18:10:34 +0200 Subject: [PATCH] Post-merge fix: Prevent double freeing of result set --- unittest/libmariadb/misc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/unittest/libmariadb/misc.c b/unittest/libmariadb/misc.c index fa9958ee..8d80c7a7 100644 --- a/unittest/libmariadb/misc.c +++ b/unittest/libmariadb/misc.c @@ -848,7 +848,6 @@ static int test_conc49(MYSQL *mysql) row= mysql_fetch_row(res); i= !atol(row[0]); - mysql_free_result(res); if (i) { diag("Load local infile disable"); mysql_free_result(res);