From: Brendan Shanks <bshanks(a)codeweavers.com> --- include/winbase.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/winbase.h b/include/winbase.h index 7d7be1ae2a8..408a26a3347 100644 --- a/include/winbase.h +++ b/include/winbase.h @@ -2963,8 +2963,8 @@ WINBASEAPI UINT WINAPI _lwrite(HFILE,LPCSTR,UINT); /* Wine internal functions */ -extern char * CDECL wine_get_unix_file_name( LPCWSTR dos ); -extern WCHAR * CDECL wine_get_dos_file_name( LPCSTR str ); +extern char * CDECL wine_get_unix_file_name( LPCWSTR dos ) __WINE_DEALLOC(HeapFree,3) __WINE_MALLOC; +extern WCHAR * CDECL wine_get_dos_file_name( LPCSTR str ) __WINE_DEALLOC(HeapFree,3) __WINE_MALLOC; #ifdef WINE_UNIX_LIB -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1575