mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 06:36:48 +02:00
Merged revision(s) 48427 #9dffe82111 from trunk:
Debugger GDBMI, prevent endless loop ........ git-svn-id: branches/fixes_1_4@48428 -
This commit is contained in:
parent
7cff4e51bc
commit
0d716a18aa
@ -10975,7 +10975,7 @@ begin
|
||||
WStr := WStr + OneChar;
|
||||
CurLocation := CurLocation + 2;
|
||||
end;
|
||||
until (OneChar = #0);
|
||||
until (OneChar = #0) or (Length(WStr) > DebuggerProperties.MaxDisplayLengthForString);
|
||||
Result := UTF16ToUTF8(WStr);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user