mpr: Use offsetof for the size of structs with varlen arrays.

Michael Stefaniuc mstefani at redhat.de
Tue Mar 5 02:36:24 CST 2013


---
 dlls/mpr/pwcache.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/mpr/pwcache.c b/dlls/mpr/pwcache.c
index efd9c23..178d40f 100644
--- a/dlls/mpr/pwcache.c
+++ b/dlls/mpr/pwcache.c
@@ -298,8 +298,8 @@ UINT WINAPI WNetEnumCachedPasswords(
             continue;
 
         /* read the value data */
-        size = sizeof *entry - sizeof entry->abResource[0] + val_sz + data_sz;
-        entry = HeapAlloc( GetProcessHeap(), 0, sizeof *entry + val_sz + data_sz );
+        size = offsetof( PASSWORD_CACHE_ENTRY, abResource[val_sz + data_sz] );
+        entry = HeapAlloc( GetProcessHeap(), 0, size );
         memcpy( entry->abResource, val, val_sz );
         entry->cbEntry = size;
         entry->cbResource = val_sz;
-- 
1.7.11.7



More information about the wine-patches mailing list