You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 22, 2023. It is now read-only.
libpmemobj allows using NULL as a proper layout for pool create/open.
In libpmemobj-cpp, when we provide nullptr as layout` we get (at runtime):
basic_string::_M_construct null not valid
I believe we should fix this - either check for nullptr and exit gracefully or, as in libpmemobj, use an empty layout.
Of course, we have to add a test and extend docs, after that.