Explorar el Código

* Fix in TDataSet.DefaultBytesToBlobData, index out of range

michael hace 4 años
padre
commit
2647578515
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;