<div dir="ltr">On line 708 of CommandObjectFrame.cpp, I'm looking at this code:<div><br></div><div><div>options.SetRootValueObjectName(name_cstr);</div></div><div><br></div><div>This code occurs inside the else block of an if/else.  name_cstr is declared prior to the if/else block and initialized to nullptr, but is only ever set to something other than nullptr in the if branch.</div><div><br></div><div>So, this code is equivalent to</div><div><br></div><div>options.SetRootValueObjectName(nullptr);  <br></div><div><br></div><div>Is this intended, and if not how would this bug manifest itself in terms of incorrect behavior?</div></div>