make refcount slightly more sane.
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22851 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -59,7 +59,7 @@ RCSID("$Id$");
|
||||
*/
|
||||
|
||||
struct hx509_certs_data {
|
||||
int ref;
|
||||
unsigned int ref;
|
||||
struct hx509_keyset_ops *ops;
|
||||
void *ops_data;
|
||||
};
|
||||
@@ -203,11 +203,11 @@ _hx509_certs_ref(hx509_certs certs)
|
||||
{
|
||||
if (certs == NULL)
|
||||
return NULL;
|
||||
if (certs->ref <= 0)
|
||||
_hx509_abort("certs refcount <= 0");
|
||||
certs->ref++;
|
||||
if (certs->ref == 0)
|
||||
_hx509_abort("certs refcount == 0");
|
||||
_hx509_abort("certs refcount == 0 on ref");
|
||||
if (certs->ref == UINT_MAX)
|
||||
_hx509_abort("certs refcount == UINT_MAX on ref");
|
||||
certs->ref++;
|
||||
return certs;
|
||||
}
|
||||
|
||||
@@ -223,8 +223,8 @@ void
|
||||
hx509_certs_free(hx509_certs *certs)
|
||||
{
|
||||
if (*certs) {
|
||||
if ((*certs)->ref <= 0)
|
||||
_hx509_abort("refcount <= 0");
|
||||
if ((*certs)->ref == 0)
|
||||
_hx509_abort("cert refcount == 0 on free");
|
||||
if (--(*certs)->ref > 0)
|
||||
return;
|
||||
|
||||
|
Reference in New Issue
Block a user