Commit b7fd8972 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msdasql: Remove redundant NULL check before heap_free().

parent da0ec7fb
...@@ -693,7 +693,6 @@ static ULONG WINAPI command_Release(ICommandText *iface) ...@@ -693,7 +693,6 @@ static ULONG WINAPI command_Release(ICommandText *iface)
if (!refs) if (!refs)
{ {
TRACE( "destroying %p\n", command ); TRACE( "destroying %p\n", command );
if (command->properties)
heap_free(command->properties); heap_free(command->properties);
if (command->session) if (command->session)
IUnknown_Release(command->session); IUnknown_Release(command->session);
......
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