1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

harmless memory leak in the dyncol unit test

to make ASAN happy
This commit is contained in:
Sergei Golubchik
2020-05-26 14:09:51 +02:00
parent e9764384ac
commit c7ae385817

View File

@@ -295,6 +295,7 @@ static int dyncol_nested(MYSQL *mysql __attribute__((unused)))
}
ma_dynstr_free(&s);
mariadb_dyncol_free(&col1);
mariadb_dyncol_free(&col2);
return OK;
}