Hans Leidekker : mscms: Fix famous typo in HeapFree call.
Module: wine Branch: refs/heads/master Commit: 6831c8dfcbb30fb34048335367cfcf7a97569656 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=6831c8dfcbb30fb340483353... Author: Hans Leidekker <hans(a)it.vu.nl> Date: Mon Jun 19 16:17:06 2006 +0200 mscms: Fix famous typo in HeapFree call. --- dlls/mscms/profile.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/mscms/profile.c b/dlls/mscms/profile.c index 37bbe0c..b5761bf 100644 --- a/dlls/mscms/profile.c +++ b/dlls/mscms/profile.c @@ -1257,7 +1257,7 @@ #ifdef HAVE_LCMS ERR( "Unable to read color profile\n" ); CloseHandle( handle ); - HeapFree( GetProcessHeap, 0, iccprofile ); + HeapFree( GetProcessHeap(), 0, iccprofile ); return NULL; }
participants (1)
-
Alexandre Julliard