From 8d98333130874132f0b8a8038502e383fd000c43 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Fri, 25 Nov 2011 00:15:46 +0000 Subject: Release 10.35.83 git-svn-id: http://svn.code.sf.net/p/netpbm/code/super_stable@1602 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/other/pngtopnm.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'converter/other') diff --git a/converter/other/pngtopnm.c b/converter/other/pngtopnm.c index 90d8705c..59149acd 100644 --- a/converter/other/pngtopnm.c +++ b/converter/other/pngtopnm.c @@ -313,6 +313,13 @@ png_info *info_ptr; }; if (info_ptr->valid & PNG_INFO_tIME) { + if (info_ptr->mod_time.month < 1 || + info_ptr->mod_time.month >= ARRAY_SIZE(month)) { + pm_message("tIME chunk in PNG input is invalid; " + "modification time of image is unknown. " + "The month value, which should be in the range " + "1-12, is %u", info_ptr->mod_time.month); + } else pm_message ("modification time: %02d %s %d %02d:%02d:%02d", info_ptr->mod_time.day, month[info_ptr->mod_time.month], info_ptr->mod_time.year, info_ptr->mod_time.hour, -- cgit 1.4.1