parse_date_basic(): return early when given a bogus timestamp
commit7fcec48da90f95dc64268ebd4b3073ae9487fe4e
authorJunio C Hamano <gitster@pobox.com>
Wed, 15 Apr 2015 15:43:58 +0000 (15 08:43 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 15 Apr 2015 17:25:05 +0000 (15 10:25 -0700)
tree297d0362b45086040278423d701ceaeee770210a
parent282616c72d1d08a77ca4fe1186cb708c38408d87
parse_date_basic(): return early when given a bogus timestamp

When the input does not have GMT timezone offset, the code computes
it by computing the local and GMT time for the given timestamp. But
there is no point doing so if the given timestamp is known to be a
bogus one.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
date.c