oledb32: Remove redundant NULL check before CoTaskMemFree().
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f6c131f5f3
commit
c0041d70c4
|
@ -72,8 +72,7 @@ static void destroy_datasource(struct datasource *data)
|
|||
CoTaskMemFree(data->propinfoset->rgPropertyInfos);
|
||||
CoTaskMemFree(data->propinfoset);
|
||||
}
|
||||
if (data->description)
|
||||
CoTaskMemFree(data->description);
|
||||
CoTaskMemFree(data->description);
|
||||
|
||||
if (data->provider)
|
||||
IDBProperties_Release(data->provider);
|
||||
|
|
Loading…
Reference in New Issue