[rhmessaging-commits] rhmessaging commits: r3087 - store/trunk/cpp/lib/jrnl.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Fri Jan 30 12:42:21 EST 2009


Author: kpvdr
Date: 2009-01-30 12:42:21 -0500 (Fri, 30 Jan 2009)
New Revision: 3087

Modified:
   store/trunk/cpp/lib/jrnl/rmgr.cpp
Log:
Fix for one of the BZ466533 (JERR_RMGR_UNKNOWNMAGIC) errors in which the Magic=0x00000000.

Modified: store/trunk/cpp/lib/jrnl/rmgr.cpp
===================================================================
--- store/trunk/cpp/lib/jrnl/rmgr.cpp	2009-01-30 17:02:05 UTC (rev 3086)
+++ store/trunk/cpp/lib/jrnl/rmgr.cpp	2009-01-30 17:42:21 UTC (rev 3087)
@@ -226,6 +226,8 @@
             case RHM_JDAT_EMPTY_MAGIC:
                 consume_filler();
                 break;
+            case 0:
+                return RHM_IORES_EMPTY;
             default:
                 std::ostringstream oss;
                 oss << std::hex << std::setfill('0');




More information about the rhmessaging-commits mailing list