From revision 1.25, 2001/05/31 22:25:30 by levitte
authorRichard Levitte <levitte@openssl.org>
Fri, 1 Jun 2001 05:36:44 +0000 (05:36 +0000)
committerRichard Levitte <levitte@openssl.org>
Fri, 1 Jun 2001 05:36:44 +0000 (05:36 +0000)
Don't decrement the reference counter twice when destroying dynamic
links.

crypto/cryptlib.c

index 070cf59690fa5123e4342d6a2daa5176a604f02b..c99851810fc548fcdebbc7ac0c6da317552d17fb 100644 (file)
@@ -240,7 +240,7 @@ void CRYPTO_destroy_dynlockid(int i)
                        }
                else
 #endif
-                       if (--(pointer->references) <= 0)
+                       if (pointer->references <= 0)
                                {
                                sk_CRYPTO_dynlock_set(dyn_locks, i, NULL);
                                }
@@ -399,7 +399,7 @@ void CRYPTO_lock(int mode, int type, const char *file, int line)
                struct CRYPTO_dynlock_value *pointer
                        = CRYPTO_get_dynlock_value(i);
 
-               if (pointer)
+               if (pointer && dynlock_lock_callback)
                        {
                        dynlock_lock_callback(mode, pointer, file, line);
                        }