-
Bug
-
Resolution: Fixed
-
P1
-
1.4.1
-
beta
-
itanium
-
windows_xp
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2054565 | 1.4.2 | Btplusnull User | P1 | Resolved | Fixed | b02 |
shows unexpected exception on Windows XP Prof(64) Itanium machine using Hopper Itanium build b11 .
To reproduce , run the Test given below .
----------------------------------------------------------------
import java.util.prefs.*;
public class Test {
public static void main(String[] args) throws Exception {
Test t = new Test();
t.go();
} // end main
public void go(){
try{
Preferences userRoot = Preferences.userRoot();
System.out.println("userRoot :"+userRoot);
String [] child = userRoot.childrenNames();
System.out.println("child.length"+child.length);
}catch(Exception e) {
System.out.println("Exception thrown = " + e);
}
}
}
------------------------------------------------------------------
Output of the program with error report file is as attached .
Looks like exception is thrown when calling Windows registry to retrive children of the node in native method 'WindowsRegEnumKeyEx'
=============================================================================
See also BUG: 4683811 P2/S2 IMFSPI: EXCEPTION_ACCESS_VIOLATION occurrs on XP Itanium
###@###.### 2002-05-13
--------------------------------
verified with Hopper b14
###@###.### 2002-06-06
--------------------------------
To reproduce , run the Test given below .
----------------------------------------------------------------
import java.util.prefs.*;
public class Test {
public static void main(String[] args) throws Exception {
Test t = new Test();
t.go();
} // end main
public void go(){
try{
Preferences userRoot = Preferences.userRoot();
System.out.println("userRoot :"+userRoot);
String [] child = userRoot.childrenNames();
System.out.println("child.length"+child.length);
}catch(Exception e) {
System.out.println("Exception thrown = " + e);
}
}
}
------------------------------------------------------------------
Output of the program with error report file is as attached .
Looks like exception is thrown when calling Windows registry to retrive children of the node in native method 'WindowsRegEnumKeyEx'
=============================================================================
See also BUG: 4683811 P2/S2 IMFSPI: EXCEPTION_ACCESS_VIOLATION occurrs on XP Itanium
###@###.### 2002-05-13
--------------------------------
verified with Hopper b14
###@###.### 2002-06-06
--------------------------------
- backported by
-
JDK-2054565 unexpected exception on Windows XP Prof(64) Itanium machine
- Resolved
- duplicates
-
JDK-4683811 IMFSPI: EXCEPTION_ACCESS_VIOLATION occurrs on XP Itanium
- Closed