[pkg-wine-party] [SCM] Debian Wine packaging branch, wheezy, updated. wine-1.4-7-302-gb61b690

Alexandre Julliard julliard at winehq.org
Sun Jun 17 20:03:37 UTC 2012


The following commit has been merged in the wheezy branch:
commit ef3754161a86ad6e0eed0d8eac92c76e184de6f4
Author: Thomas Faber <thfabba at gmx.de>
Date:   Sat May 5 13:42:00 2012 +0200

    msvcrt: Fix malloc_func_t/free_func_t calling convention.
    (cherry picked from commit bf5c7d4546b791e3e00f8501c3e74173266a07b4)

diff --git a/dlls/msvcrt/msvcrt.h b/dlls/msvcrt/msvcrt.h
index 6103c1e..377b104 100644
--- a/dlls/msvcrt/msvcrt.h
+++ b/dlls/msvcrt/msvcrt.h
@@ -243,8 +243,8 @@ int __cdecl MSVCRT__set_new_mode(int mode);
 void* __cdecl MSVCRT_operator_new(MSVCRT_size_t);
 void __cdecl MSVCRT_operator_delete(void*);
 
-typedef void* (*__cdecl malloc_func_t)(MSVCRT_size_t);
-typedef void  (*__cdecl free_func_t)(void*);
+typedef void* (__cdecl *malloc_func_t)(MSVCRT_size_t);
+typedef void  (__cdecl *free_func_t)(void*);
 
 extern char* __cdecl __unDName(char *,const char*,int,malloc_func_t,free_func_t,unsigned short int);
 extern char* __cdecl __unDNameEx(char *,const char*,int,malloc_func_t,free_func_t,void *,unsigned short int);

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list