mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 13:18:25 +02:00
* Fix AV in some cases. reported by Pascal Riekenberg
This commit is contained in:
parent
f232009010
commit
5f845aa8ff
@ -454,15 +454,14 @@ end;
|
|||||||
procedure TDBTransaction.SetDatabase(Value: TDatabase);
|
procedure TDBTransaction.SetDatabase(Value: TDatabase);
|
||||||
|
|
||||||
begin
|
begin
|
||||||
If Value<>FDatabase then
|
If Value=FDatabase then
|
||||||
begin
|
exit;
|
||||||
CheckInactive;
|
CheckInactive;
|
||||||
If Assigned(FDatabase) then
|
If Assigned(FDatabase) then
|
||||||
FDatabase.UnregisterTransaction(Self);
|
FDatabase.UnregisterTransaction(Self);
|
||||||
If Value<>Nil Then
|
If Value<>Nil Then
|
||||||
Value.RegisterTransaction(Self);
|
Value.RegisterTransaction(Self);
|
||||||
FDatabase:=Value;
|
FDatabase:=Value;
|
||||||
end;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
constructor TDBTransaction.Create(AOwner: TComponent);
|
constructor TDBTransaction.Create(AOwner: TComponent);
|
||||||
@ -523,9 +522,9 @@ end;
|
|||||||
destructor TDBTransaction.Destroy;
|
destructor TDBTransaction.Destroy;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
Database:=Nil;
|
|
||||||
CloseDataSets;
|
CloseDataSets;
|
||||||
RemoveDatasets;
|
RemoveDatasets;
|
||||||
|
Database:=Nil;
|
||||||
FDatasets.Free;
|
FDatasets.Free;
|
||||||
Inherited;
|
Inherited;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user