about summary refs log tree commit diff
path: root/converter/other/pnmtopng.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/pnmtopng.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/pnmtopng.c')
-rw-r--r--converter/other/pnmtopng.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/converter/other/pnmtopng.c b/converter/other/pnmtopng.c
index 3899a9d2..009d8bb8 100644
--- a/converter/other/pnmtopng.c
+++ b/converter/other/pnmtopng.c
@@ -962,6 +962,8 @@ tryTransparentColor(FILE *     const ifp,
             }
         }
     }  
+    *singleColorIsTransP = singleColorIsTrans;
+
     pnm_freerow(xelrow);
 }
 
@@ -1469,9 +1471,14 @@ computeUnsortedAlphaPalette(FILE *           const ifP,
     int row;
     xel * xelrow;
     unsigned int alphaColorPairCnt;
+        /* Number of different alpha/color pairs we've seen so far as we
+           iterate through the image.
+        */
 
     cht = ppm_colorhisttocolorhash(chv, colors);
 
+    /* We have not seen any alphas of any color yet. */
+    alphaColorPairCnt = 0;
     for (colorIndex = 0; colorIndex < colors; ++colorIndex) {
         alphasOfColor[colorIndex] = NULL;
         alphasOfColorCnt[colorIndex] = 0;