Hi Valerie Please review a fix at
http://cr.openjdk.java.net/~weijun/8048511/webrev.00/ A static code analysis tool is not happy to see the minor variable not initialized (if none of the ifs in lines 652-658 returns true) and used in the checkStatus() function. Although we know in that case major is 0 and checkStatus() won't touch minor at all, it's better to initialize minor to 0. Noreg-trivial. Thanks Max