Skip to content

Commit

Permalink
Fix infinite loop in certain timezones
Browse files Browse the repository at this point in the history
  • Loading branch information
mishoo authored and dlowe-net committed Jan 22, 2012
1 parent fef360a commit ee52a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/local-time.lisp
Expand Up @@ -429,7 +429,7 @@ In other words:
(defun transition-position (needle haystack &optional (start 0) (end (1- (length haystack))))
(let ((middle (floor (+ end start) 2)))
(cond
((> start end)
((>= start end)
(if (minusp end)
0
end))
Expand Down

0 comments on commit ee52a45

Please sign in to comment.