Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 1456 of file oid.c.
Referenced by crypt_oid_free().
01457 { 01458 struct OIDInfo *info, *next; 01459 01460 LIST_FOR_EACH_ENTRY_SAFE(info, next, &oidInfo, struct OIDInfo, entry) 01461 { 01462 list_remove(&info->entry); 01463 CryptMemFree(info); 01464 } 01465 DeleteCriticalSection(&oidInfoCS); 01466 }