1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Remove mysqli_close from clean_table.inc

Backported from master. See https://github.com/php/php-src/pull/8427
This commit is contained in:
Kamil Tekiela
2022-06-01 00:02:55 +01:00
parent 7ebda198ea
commit 7d65cc81f8

View File

@@ -8,7 +8,4 @@ if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
if (!mysqli_query($link, 'DROP TABLE IF EXISTS test')) {
printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
}
mysqli_close($link);
?>
}