浏览代码

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

git-svn-id: trunk@22122 -

Jonas Maebe 13 年之前
父节点
当前提交
1c80388e00
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;