mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

ludovicp
29.14.2008 5fe235b4033bad83eaa4b86f8d1b32158e78ae3d
Fixed null dereferencing issue
1 files modified
6 ■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/core/AccessControlConfigManager.java 6 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/core/AccessControlConfigManager.java
@@ -486,7 +486,11 @@
          }
          Message message = ERR_CONFIG_AUTHZ_CONFIG_NOT_ACCEPTABLE.get(
              String.valueOf(configuration.dn()), buffer.toString());
            // Bug: where in a section where configuration is null
            // WAS: String.valueOf( configuration.dn())
            // Now:
                  "null"
                  , buffer.toString());
          throw new InitializationException(message);
        }
      }