[libpng16] Add #ifdef PNG_DEBUG/#endif around normally unreachable code

in pngread.c
diff --git a/pngread.c b/pngread.c
index 9cc5510..29cbc00 100644
--- a/pngread.c
+++ b/pngread.c
@@ -3630,8 +3630,10 @@
          }
          break;
 
+#ifdef PNG_DEBUG
       default:
          png_error(png_ptr, "unexpected bit depth");
+#endif
    }
 
    return 1;