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
I think it would be enough to check if the parameter is empty:
procedureTMVCStreamHelper.WriteUTF8(const AString: string);
var
UFTStr: UTF8String;
begin
UFTStr := UTF8String(AString);
if (UFTStr <> '') then
Self.WriteBuffer(UFTStr[Low(UFTStr)], Length(UFTStr));
end;
The text was updated successfully, but these errors were encountered:
Case the
Range checking
isTrue
inProject Options > Delphi Compiler > Compiling
, I am gettingRange check error
whenAString
is empty in this code:delphimvcframework/sources/MVCFramework.Commons.pas
Line 1190 in ab090a1
I think it would be enough to check if the parameter is empty:
The text was updated successfully, but these errors were encountered: