Commit 57c6b9fd authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

devenum: Don't free uninitialized pointer value.

parent 444f9b7b
......@@ -379,9 +379,9 @@ static void free_regfilter2(REGFILTER2 *rgf)
static void write_filter_data(IPropertyBag *prop_bag, REGFILTER2 *rgf)
{
BYTE *data = NULL, *array;
IAMFilterData *fildata;
SAFEARRAYBOUND sabound;
BYTE *data, *array;
VARIANT var = {};
ULONG size;
HRESULT hr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment