mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 21:47:47 +02:00
* Fix AV in case there is no changelist (local dataset)
This commit is contained in:
parent
8c3c8022c9
commit
53c1915185
@ -3973,7 +3973,8 @@ begin
|
||||
R:=AddToChangeList(usDeleted);
|
||||
If Not TryDoing(@InternalDelete,OnDeleteError) then
|
||||
begin
|
||||
RemoveFromChangeList(R);
|
||||
if Assigned(R) then
|
||||
RemoveFromChangeList(R);
|
||||
exit;
|
||||
end;
|
||||
{$ifdef dsdebug}
|
||||
@ -4533,7 +4534,8 @@ begin
|
||||
Resync([]);
|
||||
// We get the new values here, since the bookmark should now be correct to find the record later on when doing applyupdates.
|
||||
R:=AddToChangeList(UpdateStates[wasInsert]);
|
||||
R.FBookmark:=BookMark;
|
||||
if Assigned(R) then
|
||||
R.FBookmark:=BookMark;
|
||||
{$ifdef dsdebug}
|
||||
writeln ('Post: Browse mode set');
|
||||
{$endif}
|
||||
|
Loading…
Reference in New Issue
Block a user