Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hgourvest committed Jun 8, 2016
1 parent 321b281 commit 515e846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superobject.pas
Original file line number Diff line number Diff line change
Expand Up @@ -4444,7 +4444,7 @@ procedure TSuperArray.Insert(index: Integer; const value: ISuperObject);
if (index < FLength) then
begin
if FLength = FSize then
Expand(index);
Expand(FLength);
if Index < FLength then
Move(FArray^[index], FArray^[index + 1],
(FLength - index) * SizeOf(Pointer));
Expand Down

0 comments on commit 515e846

Please sign in to comment.