mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 11:17:57 +08:00
Try to fix another unreproducible exception on older servers which fail to SHOW TABLES FROM information_schema. Probably fixes issue #1455 and issue #1439.
This commit is contained in:
@ -636,7 +636,8 @@ destructor TMySQLQuery.Destroy;
|
|||||||
begin
|
begin
|
||||||
inherited Destroy;
|
inherited Destroy;
|
||||||
FreeAndNil(FColumnNames);
|
FreeAndNil(FColumnNames);
|
||||||
mysql_free_result(FLastResult);
|
if FLastResult <> nil then
|
||||||
|
mysql_free_result(FLastResult);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user