Browse Source

* Fix in TDataSet.DefaultBytesToBlobData, index out of range

michael 4 years ago
parent
commit
2647578515
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-db/db.pas

+ 1 - 1
packages/fcl-db/db.pas

@@ -4058,7 +4058,7 @@ begin
   else
     begin
     S:='';
-    For I:=0 to Length(AValue) do
+    For I:=0 to Length(AValue)-1 do
       TJSString(S).Concat(IntToHex(aValue[i],2));
     Result:=S;
     end;