Skip to content

Commit

Permalink
[FIXED JENKINS-11767] missing break in getValues@RegistryKey
Browse files Browse the repository at this point in the history
  • Loading branch information
kohsuke committed Nov 30, 2011
1 parent ed31f9d commit a1714c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -73,6 +73,9 @@
<li class=bug>
Build history time line should be resizable
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11834">issue 11834</a>)
<li class=bug>
Fixed a bug in Windows registry enumeration with large data.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11767">issue 11767</a>)
</ul>
</div><!--=TRUNK-END=-->

Expand Down
2 changes: 2 additions & 0 deletions core/src/main/java/hudson/util/jna/RegistryKey.java
Expand Up @@ -259,6 +259,8 @@ public TreeMap<String, Object> getValues() {
default:
break; // not supported yet
}
break;

default:
check(result);
}
Expand Down

0 comments on commit a1714c1

Please sign in to comment.