mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-08 20:37:11 +01:00
Fix number of frames requested when calling CaptureBackTrace function
git-svn-id: trunk@33038 -
This commit is contained in:
parent
05174f3e67
commit
fd612990e5
@ -86,7 +86,7 @@ const
|
||||
printleakedblock: boolean = false;
|
||||
printfaultyblock: boolean = false;
|
||||
maxprintedblocklength: integer = 128;
|
||||
|
||||
|
||||
GlobalSkipIfNoLeaks : Boolean = False;
|
||||
|
||||
implementation
|
||||
@ -512,7 +512,7 @@ begin
|
||||
{ clear the memory }
|
||||
fillchar(p^,size,#255);
|
||||
{ retrieve backtrace info }
|
||||
CaptureBacktrace(1,tracesize-1,@pp^.calls[1]);
|
||||
CaptureBacktrace(1,tracesize,@pp^.calls[1]);
|
||||
|
||||
{ insert in the linked list }
|
||||
if loc_info^.heap_mem_root<>nil then
|
||||
@ -868,7 +868,7 @@ begin
|
||||
inc(loc_info^.getmem_size,size);
|
||||
inc(loc_info^.getmem8_size,(size+7) and not 7);
|
||||
{ generate new backtrace }
|
||||
CaptureBacktrace(1,tracesize-1,@pp^.calls[1]);
|
||||
CaptureBacktrace(1,tracesize,@pp^.calls[1]);
|
||||
{ regenerate signature }
|
||||
if usecrc then
|
||||
pp^.sig:=calculate_sig(pp);
|
||||
@ -1128,7 +1128,7 @@ begin
|
||||
else
|
||||
ptext:=textoutput;
|
||||
pp:=loc_info^.heap_mem_root;
|
||||
if ((loc_info^.getmem_size-loc_info^.freemem_size)=0) and SkipIfNoLeaks then
|
||||
if ((loc_info^.getmem_size-loc_info^.freemem_size)=0) and SkipIfNoLeaks then
|
||||
exit;
|
||||
Writeln(ptext^,'Heap dump by heaptrc unit');
|
||||
Writeln(ptext^,loc_info^.getmem_cnt, ' memory blocks allocated : ',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user