Revert "lib/portableproplib/prop_object.c: CID 62694 (data race condition)"

This reverts commit dc63aed221.
This commit is contained in:
Juan RP 2014-10-07 11:51:53 +02:00
parent 967acd82b0
commit 0c74a5d7fe

View File

@ -56,8 +56,9 @@ static pthread_mutex_t _prop_refcnt_mtx = PTHREAD_MUTEX_INITIALIZER;
void void
_prop_object_init(struct _prop_object *po, const struct _prop_object_type *pot) _prop_object_init(struct _prop_object *po, const struct _prop_object_type *pot)
{ {
po->po_type = pot; po->po_type = pot;
_PROP_ATOMIC_INC32(&po->po_refcnt); po->po_refcnt = 1;
} }
/* /*