aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/object
diff options
context:
space:
mode:
Diffstat (limited to 'plumbing/object')
-rw-r--r--plumbing/object/object.go9
1 files changed, 3 insertions, 6 deletions
diff --git a/plumbing/object/object.go b/plumbing/object/object.go
index 0d891ad..c48a18d 100644
--- a/plumbing/object/object.go
+++ b/plumbing/object/object.go
@@ -139,12 +139,9 @@ func (s *Signature) decodeTimeAndTimeZone(b []byte) {
}
timezone := string(b[tzStart : tzStart+timeZoneLength])
- tzhours, err := strconv.ParseInt(timezone[0:3], 10, 64)
- if err != nil {
- return
- }
- tzmins, err := strconv.ParseInt(timezone[3:], 10, 64)
- if err != nil {
+ tzhours, err1 := strconv.ParseInt(timezone[0:3], 10, 64)
+ tzmins, err2 := strconv.ParseInt(timezone[3:], 10, 64)
+ if err1 != nil || err2 != nil {
return
}
if tzhours < 0 {