mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 05:18:12 +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);
|
||||
|
||||
begin
|
||||
If Value<>FDatabase then
|
||||
begin
|
||||
CheckInactive;
|
||||
If Assigned(FDatabase) then
|
||||
FDatabase.UnregisterTransaction(Self);
|
||||
If Value<>Nil Then
|
||||
Value.RegisterTransaction(Self);
|
||||
FDatabase:=Value;
|
||||
end;
|
||||
If Value=FDatabase then
|
||||
exit;
|
||||
CheckInactive;
|
||||
If Assigned(FDatabase) then
|
||||
FDatabase.UnregisterTransaction(Self);
|
||||
If Value<>Nil Then
|
||||
Value.RegisterTransaction(Self);
|
||||
FDatabase:=Value;
|
||||
end;
|
||||
|
||||
constructor TDBTransaction.Create(AOwner: TComponent);
|
||||
@ -523,9 +522,9 @@ end;
|
||||
destructor TDBTransaction.Destroy;
|
||||
|
||||
begin
|
||||
Database:=Nil;
|
||||
CloseDataSets;
|
||||
RemoveDatasets;
|
||||
Database:=Nil;
|
||||
FDatasets.Free;
|
||||
Inherited;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user