Skip to content

Commit 888c1c3

Browse files
committed
again
1 parent e0cc25b commit 888c1c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ffi/proofs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ func (r *NextKeyRange) StartKey() []byte {
343343

344344
// HasEndKey returns true if this key range has an exclusive end key.
345345
func (r *NextKeyRange) HasEndKey() bool {
346-
return r.endKey.HasValue()
346+
return r.endKey != nil && r.endKey.HasValue()
347347
}
348348

349349
// EndKey returns the exclusive end key of this key range if it exists or nil if

0 commit comments

Comments
 (0)