Browse Source

* don't index past the end of the transitions array (mantis #30829)

git-svn-id: trunk@34775 -
Jonas Maebe 8 years ago
parent
commit
85f2903b8b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/unix/timezone.inc

+ 1 - 1
rtl/unix/timezone.inc

@@ -55,7 +55,7 @@ begin
    end
    end
   else
   else
    begin
    begin
-     for i:=1 to num_transitions do
+     for i:=1 to num_transitions-1 do
       if (timer<transitions[i]) then
       if (timer<transitions[i]) then
        break;
        break;
      i:=type_idxs[i-1];
      i:=type_idxs[i-1];