fix null mod_name
This commit is contained in:
@ -68,7 +68,7 @@ public:
|
||||
|
||||
void TestObLogDlist::generate_data(const int64_t count, Type *&datas)
|
||||
{
|
||||
datas = (Type *)ob_malloc(sizeof(Type) * count);
|
||||
datas = (Type *)ob_malloc(sizeof(Type) * count, ObNewModIds::TEST);
|
||||
OB_ASSERT(NULL != datas);
|
||||
for (int64_t idx = 0; idx < count; idx++) {
|
||||
new (datas + idx) Type();
|
||||
|
||||
Reference in New Issue
Block a user