git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] Fix date checking in case if time was not initialized.
@ 2013-02-25  8:36 Mike Gorchak
  2013-02-25 18:26 ` Junio C Hamano
  0 siblings, 1 reply; 9+ messages in thread
From: Mike Gorchak @ 2013-02-25  8:36 UTC (permalink / raw)
  To: git

Fix is_date() function failings in detection of correct date in case
if time was not properly initialized.

From: Mike Gorchak <mike.gorchak.qnx@gmail.com>
Signed-off-by: Mike Gorchak <mike.gorchak.qnx@gmail.com>
---
 date.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/date.c b/date.c
index 57331ed..ec758f4 100644
--- a/date.c
+++ b/date.c
@@ -357,6 +357,7 @@ static int is_date(int year, int month, int day,
struct tm *now_tm, time_t now,
 	if (month > 0 && month < 13 && day > 0 && day < 32) {
 		struct tm check = *tm;
 		struct tm *r = (now_tm ? &check : tm);
+		struct tm fixed_r;
 		time_t specified;

 		r->tm_mon = month - 1;
@@ -377,7 +378,16 @@ static int is_date(int year, int month, int day,
struct tm *now_tm, time_t now,
 		if (!now_tm)
 			return 1;

-		specified = tm_to_time_t(r);
+		/* Fix tm structure in case if time was not initialized */
+		fixed_r = *r;
+		if (fixed_r.tm_hour==-1)
+			fixed_r.tm_hour=0;
+		if (fixed_r.tm_min==-1)
+			fixed_r.tm_min=0;
+		if (fixed_r.tm_sec==-1)
+			fixed_r.tm_sec=0;
+
+		specified = tm_to_time_t(&fixed_r);

 		/* Be it commit time or author time, it does not make
 		 * sense to specify timestamp way into the future.  Make
-- 
1.8.2-rc0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-02-26 18:58 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-25  8:36 [PATCH 1/1] Fix date checking in case if time was not initialized Mike Gorchak
2013-02-25 18:26 ` Junio C Hamano
2013-02-25 18:43   ` Mike Gorchak
2013-02-25 19:04     ` Junio C Hamano
2013-02-25 19:32       ` Mike Gorchak
2013-02-25 19:37         ` Junio C Hamano
2013-02-25 21:47           ` Mike Gorchak
2013-02-25 22:07             ` Junio C Hamano
2013-02-26 18:58               ` Mike Gorchak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).