chore(Deps/Acelite): Update to 6.5.10 (#3450)

This commit is contained in:
Kargatum
2020-11-11 22:09:02 +07:00
committed by GitHub
parent a93565b6da
commit e27201cee2
921 changed files with 18238 additions and 33164 deletions

View File

@@ -19,7 +19,11 @@ ACE_Name_Binding::ACE_Name_Binding (void)
ACE_Name_Binding::~ACE_Name_Binding (void)
{
ACE_TRACE ("ACE_Name_Binding::~ACE_Name_Binding");
#if defined (ACE_HAS_ALLOC_HOOKS)
ACE_Allocator::instance()->free ((void *) this->type_);
#else
ACE_OS::free ((void *) this->type_);
#endif /* ACE_HAS_ALLOC_HOOKS */
}
ACE_Name_Binding::ACE_Name_Binding (const ACE_NS_WString &name,
@@ -47,7 +51,11 @@ ACE_Name_Binding::operator = (const ACE_Name_Binding &s)
if (this != &s)
{
#if defined (ACE_HAS_ALLOC_HOOKS)
ACE_Allocator::instance()->free ((void *) this->type_);
#else
ACE_OS::free ((void *) this->type_);
#endif /* ACE_HAS_ALLOC_HOOKS */
this->name_ = s.name_;
this->value_ = s.value_;
this->type_ = ACE_OS::strdup (s.type_);