[libpng16] Do not enable tRNS having trans_color with out-of-range value.
diff --git a/ANNOUNCE b/ANNOUNCE
index b40645c..a845c5e 100644
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -1,4 +1,4 @@
-Libpng 1.6.35beta01 - October 15, 2017
+Libpng 1.6.35beta01 - October 16, 2017
 
 This is not intended to be a public release. It will be replaced
 within a few weeks by a public version or by another test version.
@@ -24,12 +24,12 @@
 
 Changes since the last public release (1.6.34):
 
-Version 1.6.35beta01 [October 15, 2017]
+Version 1.6.35beta01 [October 16, 2017]
   Restored 21 of the contrib/pngsuite/i*.png, which do not cause test
     failures. Placed the remainder in contrib/pngsuite/interlaced/i*.png.
   Added calls to png_set_*() transforms commonly used by browsers to
     the fuzzer.
-  Nullify trans_color with out-of-range value.
+  Do not enable tRNS having trans_color with out-of-range value.
 
 Send comments/corrections/commendations to png-mng-implement at lists.sf.net
 (subscription required; visit
diff --git a/CHANGES b/CHANGES
index 6fa30dc..18c9846 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6040,12 +6040,12 @@
 Version 1.6.34 [September 29, 2017]
   Removed contrib/pngsuite/i*.png; some of caused test failures.
 
-Version 1.6.35beta01 [October 15, 2017]
+Version 1.6.35beta01 [October 16, 2017]
   Restored 21 of the contrib/pngsuite/i*.png, which do not cause test
     failures. Placed the remainder in contrib/pngsuite/interlaced/i*.png.
   Added calls to png_set_*() transforms commonly used by browsers to
     the fuzzer.
-  Nullify trans_color with out-of-range value.
+  Do not enable tRNS having trans_color with out-of-range value.
 
 Send comments/corrections/commendations to png-mng-implement at lists.sf.net
 (subscription required; visit
diff --git a/pngset.c b/pngset.c
index d2ee44f..d6b5403 100644
--- a/pngset.c
+++ b/pngset.c
@@ -1038,7 +1038,7 @@
           {
             png_warning(png_ptr,
                 "tRNS chunk has out-of-range samples for bit_depth");
-            trans_color = NULL;
+            return;
           }
       }