Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1100,8 +1100,8 @@ namespace Util{
// calculate fLen if missing
if (!fLen){
fLen = getDefaultSize(fType);
if (!fLen){
WARN_MSG("Attempting to add a mandatory-size field without size");
if (!fLen && fType != RAX_NESTED) {
WARN_MSG("Attempting to add a mandatory-size field '%s' without size", name.c_str());
return;
}
}
Expand Down