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

fp.bugs<1738>synchronization on an uninstantiated object does not report an erro

XMLWordPrintable

    • 1.0beta
    • sparc
    • solaris_2.3
    • Not verified

      ###@###.###

      Description:
      Using the following insert of code;
      void myfunc() {
      synchronize (myobject) {
      ...
      }
      }
      Obviously, if you fail to instantiate myobject, it does not
      have a instance of an object to lock on. However, if you
      do forget to instantiate a locking object, it will not
      throw an exception at runtime. It will allow the lock to
      occur, lock and run the code in the synchronized area,
      and will not release the lock, thus hanging all code
      which synchronizes on this object. Obviously, this is a
      bug in the java application, however, the runtime system
      should throw an exception when you try to synchronize on
      a null object.

            fyellinsunw Frank Yellin (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: