Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the missing commandList container closure in IM command (project-…
…chip#5799) Problem: src/app/Command.h and .cpp create incomplete tlv data, the commandList array is missing the end of container byte Calling Command::Init() followed by Command::FinalizeCommandsMessage() results in following invalid tlv data: 15 36 00 18 It should be: 15 36 00 18 18 This affects every interactive model command, they are all incomplete/invalid. Summary of Changes: add this to beginning of Command::FinalizeCommandsMessage(): mInvokeCommandBuilder.GetCommandListBuilder().EndOfCommandList() fixes project-chip#5789
- Loading branch information