28 Mar
2023
28 Mar
'23
9:31 p.m.
From: Michael Stefaniuc <mstefani(a)winehq.org> --- dlls/msdasql/session.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/msdasql/session.c b/dlls/msdasql/session.c index 588be365b72..3e6e5f2a0b3 100644 --- a/dlls/msdasql/session.c +++ b/dlls/msdasql/session.c @@ -693,8 +693,7 @@ static ULONG WINAPI command_Release(ICommandText *iface) if (!refs) { TRACE( "destroying %p\n", command ); - if (command->properties) - heap_free(command->properties); + heap_free(command->properties); if (command->session) IUnknown_Release(command->session); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/2526