File: 0014-Fixed-the-unsigned-doff.-Related-to-1087911.patch

package info (click to toggle)
dcraw 9.28-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,384 kB
  • sloc: ansic: 86,219; sh: 35; makefile: 14
file content (21 lines) | stat: -rw-r--r-- 449 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Filip Hroch <hroch@physics.muni.cz>
Date: Mon, 3 Mar 2025 22:35:56 +0100
Subject: Fixed the unsigned doff. Related to #1087911

---
 dcraw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dcraw.c b/dcraw.c
index 369f214..faa16ed 100644
--- a/dcraw.c
+++ b/dcraw.c
@@ -6232,7 +6232,7 @@ guess_cfa_pc:
 
 int CLASS parse_tiff (int base)
 {
-  int doff;
+  unsigned doff;
 
   tseek (ifp, base, SEEK_SET);
   order = get2();