[libpng16] Removed some unused arrays from png_read_push_finish_row().
diff --git a/pngpread.c b/pngpread.c
index 3705e41..026acbe 100644
--- a/pngpread.c
+++ b/pngpread.c
@@ -1201,6 +1201,7 @@
 void /* PRIVATE */
 png_read_push_finish_row(png_structrp png_ptr)
 {
+#ifdef PNG_READ_INTERLACING_SUPPORTED
    /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
 
    /* Start of interlace block */
@@ -1219,6 +1220,7 @@
     * it, uncomment it here and in png.h
    static PNG_CONST png_byte png_pass_height[] = {8, 8, 4, 4, 2, 2, 1};
    */
+#endif
 
    png_ptr->row_number++;
    if (png_ptr->row_number < png_ptr->num_rows)