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

Jean-Noël Rouvignac
18.06.2016 d6b4863175cbac9c771441d8d50b75774044c07d
opendj-server-legacy/src/main/java/org/opends/server/extensions/BCrypt.java
@@ -436,10 +436,10 @@
   * @return  the decoded value of x
   */
  private static byte char64(char x) {
    if ((int)x < 0 || (int)x > index_64.length) {
    if (x < 0 || x > index_64.length) {
      return -1;
    }
    return index_64[(int)x];
    return index_64[x];
  }
  /**