fix null mod_name

This commit is contained in:
obdev
2023-04-13 06:46:35 +00:00
committed by ob-robot
parent fdc59d1d46
commit 36e28a5f79
89 changed files with 175 additions and 183 deletions

View File

@ -22,12 +22,12 @@ struct MyPageAllocator: public ObIAllocator
{
UNUSED(attr);
alloc_count_++;
return ob_malloc(sz);
return ob_malloc(sz, ObNewModIds::TEST);
}
void *alloc(const int64_t sz)
{
alloc_count_++;
return ob_malloc(sz);
return ob_malloc(sz, ObNewModIds::TEST);
}
void free(void *p)
{