Francois Gouget : cryptnet: Fix compilation on systems that don' t support nameless structs.
Module: wine Branch: master Commit: 4b6368c0e25e6da5676b308f28818a61622db6bf URL: http://source.winehq.org/git/wine.git/?a=commit;h=4b6368c0e25e6da5676b308f28... Author: Francois Gouget <fgouget(a)free.fr> Date: Sun Oct 28 02:49:19 2007 +0200 cryptnet: Fix compilation on systems that don't support nameless structs. --- dlls/cryptnet/cryptnet_main.c | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/dlls/cryptnet/cryptnet_main.c b/dlls/cryptnet/cryptnet_main.c index b83adb8..487da9d 100644 --- a/dlls/cryptnet/cryptnet_main.c +++ b/dlls/cryptnet/cryptnet_main.c @@ -23,6 +23,7 @@ #include <stdio.h> #define NONAMELESSUNION +#define NONAMELESSSTRUCT #include "windef.h" #include "wine/debug.h" @@ -353,7 +354,7 @@ static BOOL CRYPT_GetObjectFromFile(HANDLE hFile, PCRYPT_BLOB_ARRAY pObject) if ((ret = GetFileSizeEx(hFile, &size))) { - if (size.HighPart) + if (size.u.HighPart) { WARN("file too big\n"); SetLastError(ERROR_INVALID_DATA); @@ -363,11 +364,11 @@ static BOOL CRYPT_GetObjectFromFile(HANDLE hFile, PCRYPT_BLOB_ARRAY pObject) { CRYPT_DATA_BLOB blob; - blob.pbData = CryptMemAlloc(size.LowPart); + blob.pbData = CryptMemAlloc(size.u.LowPart); if (blob.pbData) { - blob.cbData = size.LowPart; - ret = ReadFile(hFile, blob.pbData, size.LowPart, &blob.cbData, + blob.cbData = size.u.LowPart; + ret = ReadFile(hFile, blob.pbData, size.u.LowPart, &blob.cbData, NULL); if (ret) {
participants (1)
-
Alexandre Julliard