Skip to content

Commit d814ce7

Browse files
[chip-tool[darwin-framework-tool] Using ComplexArgument leaks on syntax failure and even on success (#36227)
* [chip-tool[darwin-framework-tool] Using a malformed ComplexArgument may result into a leak * [chip-tool[darwin-framework-tool] Even on success the ComplexArgument may not be cleared properly --------- Co-authored-by: Andrei Litvin <andy314@gmail.com>
1 parent 692983e commit d814ce7

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

examples/chip-tool/commands/clusters/ComplexArgument.h

+14-2
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,12 @@ class ComplexArgumentParser
181181
// - 11 is the maximum length of a %d (-2147483648, 2147483647)
182182
// - 2 is the length for the "[" and "]" characters.
183183
snprintf(labelWithIndex, sizeof(labelWithIndex), "%.241s[%d]", label, i);
184-
ReturnErrorOnFailure(ComplexArgumentParser::Setup(labelWithIndex, content[i], value[i]));
184+
auto error = ComplexArgumentParser::Setup(labelWithIndex, content[i], value[i]);
185+
if (CHIP_NO_ERROR != error)
186+
{
187+
chip::Platform::MemoryFree(content);
188+
return error;
189+
}
185190
}
186191

187192
request = chip::app::DataModel::List<T>(content, value.size());
@@ -415,7 +420,14 @@ class TypedComplexArgument : public ComplexArgument
415420
return ComplexArgumentParser::Setup(label, *mRequest, value);
416421
}
417422

418-
void Reset() { *mRequest = T(); }
423+
void Reset()
424+
{
425+
if (mRequest != nullptr)
426+
{
427+
ComplexArgumentParser::Finalize(*mRequest);
428+
*mRequest = T();
429+
}
430+
}
419431

420432
private:
421433
T * mRequest;

0 commit comments

Comments
 (0)