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

Invalid Null pointer protection in NamingContextImpl.nameToString

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P4 P4
    • None
    • 5.0
    • other-libs
    • x86
    • windows_xp

      Name: jl125535 Date: 07/30/2004


      FULL PRODUCT VERSION :
      java version "1.5.0-beta2"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta2-b51)
      Java HotSpot(TM) Client VM (build 1.5.0-beta2-b51, mixed mode, sharing)

      ADDITIONAL OS VERSION INFORMATION :
      Microsoft Windows XP [Version 5.1.2600]

      A DESCRIPTION OF THE PROBLEM :
      In com.sun.corba.se.impl.naming.cosnaming.NamingContextImpl.nameToString(NameComponent[] name)

      the code does this

      if (name != null || name.length > 0) {

      this is bad. it should be

      if (name != null && name.length > 0) {


      REPRODUCIBILITY :
      This bug can be reproduced always.
      (Incident Review ID: 290253)
      ======================================================================

            kcavanauorcl Ken Cavanaugh (Inactive)
            jleesunw Jon Lee (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: