소스 검색

* Adjust download buffer size. Fixes issue #41342

Michaël Van Canneyt 1 개월 전
부모
커밋
fad1fbc584
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/fppkg/src/pkgwget.pp

+ 1 - 1
packages/fppkg/src/pkgwget.pp

@@ -65,7 +65,7 @@ end;
 function TWGetDownloader.WGetDownload(Const URL: String; Dest: TStream): Boolean;
 
 Var
-  Buffer : Array[0..4096] of byte;
+  Buffer : Array[0..4095] of byte;
   Count : Integer;
 
 begin