about summary refs log tree commit diff
path: root/converter/other/pnmtops.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2021-03-27 18:51:04 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2021-03-27 18:51:04 +0000
commite722d4426fa43a12dcba8369808b28af4e38b526 (patch)
tree258b7d8c8bdc28a3805348893179f3a9bece0e06 /converter/other/pnmtops.c
parent70281e0860cc4ef71cd1f4c25a45f45bf2cbdb6d (diff)
downloadnetpbm-mirror-e722d4426fa43a12dcba8369808b28af4e38b526.tar.gz
netpbm-mirror-e722d4426fa43a12dcba8369808b28af4e38b526.tar.xz
netpbm-mirror-e722d4426fa43a12dcba8369808b28af4e38b526.zip
Release 10.73.35
git-svn-id: http://svn.code.sf.net/p/netpbm/code/super_stable@4072 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/pnmtops.c')
-rw-r--r--converter/other/pnmtops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/other/pnmtops.c b/converter/other/pnmtops.c
index c1dadc3e..200c7520 100644
--- a/converter/other/pnmtops.c
+++ b/converter/other/pnmtops.c
@@ -1011,8 +1011,8 @@ validateComputableBoundingBox(float const scols,
     float const bbWidth  = llx + scols + 0.5;
     float const bbHeight = lly + srows + 0.5;
 
-    if (bbHeight < INT_MIN || bbHeight > INT_MAX ||
-        bbWidth  < INT_MIN || bbWidth  > INT_MAX)
+    if ((double)bbHeight < INT_MIN || (double)bbHeight > INT_MAX ||
+        (double)bbWidth  < INT_MIN || (double)bbWidth  > INT_MAX)
         pm_error("Bounding box dimensions %.1f x %.1f are too large "
                  "for computations.  "
                  "This probably means input image width, height, "