hotspot/src/os/linux/vm/os_linux.cpp
changeset 22745 4acf6ad4c462
parent 22734 41757c1f3946
child 22749 8121b1d5f498
--- a/hotspot/src/os/linux/vm/os_linux.cpp	Wed Feb 05 21:24:29 2014 -0800
+++ b/hotspot/src/os/linux/vm/os_linux.cpp	Thu Feb 06 14:28:35 2014 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -3000,7 +3000,9 @@
 
   unsigned char vec[1];
   unsigned imin = 1, imax = pages + 1, imid;
-  int mincore_return_value;
+  int mincore_return_value = 0;
+
+  assert(imin < imax, "Unexpected page size");
 
   while (imin < imax) {
     imid = (imax + imin) / 2;