[exo-jcr-commits] exo-jcr SVN: r2272 - jcr/branches/1.14.x/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/util/jdbc.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Apr 13 05:16:56 EDT 2010


Author: tolusha
Date: 2010-04-13 05:16:55 -0400 (Tue, 13 Apr 2010)
New Revision: 2272

Modified:
   jcr/branches/1.14.x/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/util/jdbc/DBInitializer.java
Log:
EXOJCR-662: avoid infinite loop

Modified: jcr/branches/1.14.x/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/util/jdbc/DBInitializer.java
===================================================================
--- jcr/branches/1.14.x/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/util/jdbc/DBInitializer.java	2010-04-13 07:53:42 UTC (rev 2271)
+++ jcr/branches/1.14.x/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/util/jdbc/DBInitializer.java	2010-04-13 09:16:55 UTC (rev 2272)
@@ -366,7 +366,7 @@
          while (next != null)
          {
             errorTrace += next.getMessage() + "; ";
-            next = e.getNextException();
+            next = next.getNextException();
          }
          Throwable cause = e.getCause();
          String msg =



More information about the exo-jcr-commits mailing list