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

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P4
    • 6
    • Affects Version/s: 6
    • Component/s: 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

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

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: