From dc33b3d7b21b2003d6835a06fecf9ed4f4535f7e Mon Sep 17 00:00:00 2001 From: "Scott J. Goldman" Date: Sun, 2 Jun 2013 02:13:45 -0700 Subject: [PATCH] Don't bail on parsing commits with an invalid timezone git doesn't do that, and it's not something that's usually actionable to fix. if you have a git repository with one bad timezone in the history, it's too late to change it most likely. --- src/signature.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/signature.c b/src/signature.c index 1131fb789..cd6167fb4 100644 --- a/src/signature.c +++ b/src/signature.c @@ -174,8 +174,10 @@ int git_signature__parse(git_signature *sig, const char **buffer_out, tz_start = time_end + 1; if ((tz_start[0] != '-' && tz_start[0] != '+') || - git__strtol32(&offset, tz_start + 1, &tz_end, 10) < 0) - return signature_error("malformed timezone"); + git__strtol32(&offset, tz_start + 1, &tz_end, 10) < 0) { + //malformed timezone, just assume it's zero + offset = 0; + } hours = offset / 100; mins = offset % 100;