[parallel.dddif.initddd] fix std::bad_alloc error due to wrong type
The DDD_TypeDefine
function reads the argument after EL_END
as char*
,
but desc_->bnd_size
is an int
, which gave a very large number and a std::bad_alloc
in my case.
The DDD_TypeDefine
function reads the argument after EL_END
as char*
,
but desc_->bnd_size
is an int
, which gave a very large number and a std::bad_alloc
in my case.