Index: modules/luni/src/main/native/luni/shared/luniglob.c =================================================================== --- modules/luni/src/main/native/luni/shared/luniglob.c (revision 514977) +++ modules/luni/src/main/native/luni/shared/luniglob.c (working copy) @@ -325,9 +325,10 @@ /* Commit the full bootstrap class path into the VMI */ if (bootstrapClassPath) { + int shift=(bootstrapClassPath[0]==(char)hysysinfo_get_classpathSeparator() ? 1 : 0); vmiError rcSetProperty = (*vmInterface)->SetSystemProperty (vmInterface, BOOTCLASSPATH_PROPERTY, - bootstrapClassPath); + bootstrapClassPath + shift); if (VMI_ERROR_NONE != rcSetProperty) { returnCode = JNI_ERR;