diff src/os/linux/vm/os_linux.cpp @ 14328:2c2a99f6cf83

8029775: Solaris code cleanup 8033464: Linux code cleanup Summary: cleaned up warnings in solaris and linux specific os code. Reviewed-by: coleenp, fparain, dcubed Contributed-by: gerald.thornbrugh@oracle.com
author coleenp
date Thu, 06 Feb 2014 14:28:35 -0500
parents b59507f713e0
children c2626e4f0c80
line wrap: on
line diff
--- a/src/os/linux/vm/os_linux.cpp	Wed Feb 05 21:24:29 2014 -0800
+++ b/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;