Explorar el Código

* fixed missing pointer dereference of parameter passed to move()
(patch by ocean, mantis #22670)

git-svn-id: trunk@22122 -

Jonas Maebe hace 13 años
padre
commit
1c80388e00
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/fcl-image/src/fpreadtiff.pas

+ 1 - 1
packages/fcl-image/src/fpreadtiff.pas

@@ -2040,7 +2040,7 @@ begin
         i:=n+1;
         inc(NewCount,i);
         inc(p);
-        System.Move(p,d^,i);
+        System.Move(p^,d^,i);
         inc(p,i);
         inc(d,i);
       end;