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

ludovicp
29.14.2008 46853c4742d8388ccfbf7f132ec156e8e775f094
Fixed null dereferencing issue
1 files modified
6 ■■■■ changed files
opends/src/server/org/opends/server/core/AccessControlConfigManager.java 6 ●●●● patch | view | raw | blame | history
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);
        }
      }