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

neil_a_wilson
17.41.2006 1b79180232de961311b9049da644ad7171da7e1d
Update the memory-based backend to fix a problem in the LDIF import code in
that it would not detect the end of the LDIF, resulting in a null pointer
exception.

OpenDS Issue Number: 668
1 files modified
4 ■■■■ changed files
opends/src/server/org/opends/server/backends/MemoryBackend.java 4 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/backends/MemoryBackend.java
@@ -635,6 +635,10 @@
        try
        {
          e = reader.readEntry();
          if (e == null)
          {
            break;
          }
        }
        catch (LDIFException le)
        {