Skip to content

Commit b2fae94

Browse files
suhaibmujahidlhchavez
authored andcommitted
Check nil signature
(cherry picked from commit 91d0845)
1 parent 707a03b commit b2fae94

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

signature.go

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ type Signature struct {
1717
}
1818

1919
func newSignatureFromC(sig *C.git_signature) *Signature {
20+
if sig == nil {
21+
return nil
22+
}
23+
2024
// git stores minutes, go wants seconds
2125
loc := time.FixedZone("", int(sig.when.offset)*60)
2226
return &Signature{

0 commit comments

Comments
 (0)