From edccb203c421d2bd820062024088c6698424d9ee Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Wed, 4 Feb 2026 20:47:04 -0500 Subject: Support dual-purpose packages in Burn. Fixes https://github.com/wixtoolset/issues/issues/8958 --- src/libs/dutil/WixToolset.DUtil/strutil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libs/dutil/WixToolset.DUtil/strutil.cpp') diff --git a/src/libs/dutil/WixToolset.DUtil/strutil.cpp b/src/libs/dutil/WixToolset.DUtil/strutil.cpp index 013c1b12..3c643879 100644 --- a/src/libs/dutil/WixToolset.DUtil/strutil.cpp +++ b/src/libs/dutil/WixToolset.DUtil/strutil.cpp @@ -2774,7 +2774,7 @@ don't remain in memory. ****************************************************************************/ extern "C" DAPI_(HRESULT) StrSecureZeroString( - __in LPWSTR pwz + __in_z_opt LPWSTR pwz ) { HRESULT hr = S_OK; @@ -2798,7 +2798,7 @@ don't remain in memory, then frees the string. ****************************************************************************/ extern "C" DAPI_(HRESULT) StrSecureZeroFreeString( - __in LPWSTR pwz + __in_z_opt LPWSTR pwz ) { HRESULT hr = S_OK; -- cgit v1.2.3-55-g6feb