소스 검색

* make use of AllocMem in fpc_dynarray_setlength

git-svn-id: trunk@46900 -
florian 5 년 전
부모
커밋
449cc8f152
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      rtl/inc/dynarr.inc

+ 1 - 2
rtl/inc/dynarr.inc

@@ -208,8 +208,7 @@ procedure fpc_dynarray_setlength(var p : pointer;pti : pointer;
           { do we have to allocate memory? }
           if dims[0] = 0 then
             exit;
-          getmem(newp,size);
-          fillchar(newp^,size,0);
+          newp:=AllocMem(size);
 {$ifndef VER3_0}
           { call int_InitializeArray for management operators }
           if assigned(eletypemngd) and (PTypeKind(eletype)^ in [tkRecord, tkObject]) then