소스 검색

* Fix color conversion from grey to rgb. Fixes issue #40007

Michaël Van Canneyt 1 개월 전
부모
커밋
67caf32fec
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/pasjpeg/src/jdcolor.pas

+ 1 - 1
packages/pasjpeg/src/jdcolor.pas

@@ -302,7 +302,7 @@ begin
   begin
     inptr := JSAMPLE_PTR(input_buf^[0]^[input_row]);
     Inc(input_row);
-    outptr := JSAMPLE_PTR(@output_buf^[0]);
+    outptr := JSAMPLE_PTR(output_buf^[0]);
     Inc(JSAMPROW_PTR(output_buf));
     for col := 0 to pred(num_cols) do
     begin