Andrew Talbot : inetcomm: Void functions should not return a value.
Module: wine Branch: master Commit: e27fe2d76a0bedd2ba3ca39fa6e38a5a49f522c4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e27fe2d76a0bedd2ba3ca39fa6... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Sat Mar 29 19:10:31 2008 +0000 inetcomm: Void functions should not return a value. --- dlls/inetcomm/mimeole.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/inetcomm/mimeole.c b/dlls/inetcomm/mimeole.c index 3ee7281..1e39f27 100644 --- a/dlls/inetcomm/mimeole.c +++ b/dlls/inetcomm/mimeole.c @@ -2786,7 +2786,7 @@ static void WINAPI MimeAlloc_Free( IMimeAllocator* iface, LPVOID pv) { - return CoTaskMemFree(pv); + CoTaskMemFree(pv); } static ULONG WINAPI MimeAlloc_GetSize(
participants (1)
-
Alexandre Julliard