Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6276900

Change jvmti.h versionCheck to be error if compiletime version > runtime version

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 6
    • 6
    • core-svc
    • b40
    • generic, sparc
    • generic, solaris_10

      file src/share/demo/jvmti/versionCheck/versionCheck.c
      has a line:

          if ( cmajor != rmajor || cminor != rminor ) {
              error

      Change it to:

          if ( (cmajor > rmajor) || (cmajor == rmajor && cminor > rminor) ) {
              error
      ###@###.### 2005-05-26 23:34:26 GMT
      ###@###.### 2005-05-31 16:23:46 GMT

            ohair Kelly Ohair (Inactive)
            ohair Kelly Ohair (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: