]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
fixed refcounting in certificate trustchain validation
authorMartin Willi <martin@strongswan.org>
Mon, 31 Mar 2008 07:16:12 +0000 (07:16 -0000)
committerMartin Willi <martin@strongswan.org>
Mon, 31 Mar 2008 07:16:12 +0000 (07:16 -0000)
src/charon/credentials/credential_manager.c

index ac97f73a499d0b23bd8dd6d404f364f123e635c7..d8381afd435cd3d04d70ffa843e76bd6e1ec3789 100644 (file)
@@ -918,8 +918,8 @@ static bool verify_trust_chain(private_credential_manager_t *this,
                        else
                        {
                                DBG1(DBG_CFG, "no issuer certificate found for \"%D\"", 
-                                        issuer->get_subject(issuer));
-                               current->destroy(current);
+                                        current->get_subject(current));
+                               issuer->destroy(issuer);
                                break;
                        }
                }
@@ -1006,7 +1006,8 @@ static bool trusted_enumerate(trusted_enumerator_t *this,
                                }
                                return TRUE;
                        }
-                       return FALSE;
+                       this->current->destroy(this->current);
+                       this->current = NULL;
                }
        }
        /* try to verify the trust chain for each certificate found */
@@ -1024,6 +1025,7 @@ static bool trusted_enumerate(trusted_enumerator_t *this,
                        }
                        return TRUE;
                }
+               this->current = NULL;
        }
        return FALSE;
 }