Author: manjula
Date: Tue Jul 17 04:58:20 2007
New Revision: 556894

URL: http://svn.apache.org/viewvc?view=rev&rev=556894
Log:
Fixing bug in rampart_context.

Modified:
    webservices/rampart/trunk/c/src/util/rampart_context.c

Modified: webservices/rampart/trunk/c/src/util/rampart_context.c
URL: 
http://svn.apache.org/viewvc/webservices/rampart/trunk/c/src/util/rampart_context.c?view=diff&rev=556894&r1=556893&r2=556894
==============================================================================
--- webservices/rampart/trunk/c/src/util/rampart_context.c (original)
+++ webservices/rampart/trunk/c/src/util/rampart_context.c Tue Jul 17 04:58:20 
2007
@@ -188,8 +188,9 @@
 
     if(rampart_context)
     {
-        if (--(rampart_context->ref) > 0)
+        if ((rampart_context->ref) > 0)
         {
+            rampart_context->ref--;
             return;
         }
         


Reply via email to