You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Potential TList leak, plus potential TPCOperationsComp leaks that were added to same TList via Do_GetOperationsBlock.
See *** for problem code.
Line 1587 start of function:
Function FindLastSameBlockByOperationsBlock(min,max : Cardinal; var OperationBlock : TOperationBlock) : Boolean;
var i : Integer;
ant_nblock : Int64;
auxBlock, sbBlock : TOperationBlock;
distinctmax,distinctmin : Cardinal;
BlocksList : TList<TPCOperationsComp>;
errors : String;
Begin
Result := false;
OperationBlock := CT_OperationBlock_NUL;
repeat
BlocksList := TList<TPCOperationsComp>.Create; // *** LIST CREATED ***
try
If Not Do_GetOperationsBlock(Nil,min,max,20000,true,BlocksList) then exit; // *** LIST NOT DESTROYED ***
The text was updated successfully, but these errors were encountered:
Potential TList leak, plus potential TPCOperationsComp leaks that were added to same TList via Do_GetOperationsBlock.
See *** for problem code.
Line 1587 start of function:
The text was updated successfully, but these errors were encountered: