mirror of
https://github.com/reactos/wine.git
synced 2025-04-03 16:42:06 +00:00
msi: Avoid accessing uninitialized memory in ACTION_AppSearchReg.
Found by valgrind.
This commit is contained in:
parent
3f70b07870
commit
2eb33f5bcb
@ -445,7 +445,8 @@ static UINT ACTION_AppSearchReg(MSIPACKAGE *package, LPWSTR *appValue, MSISIGNAT
|
|||||||
if (sz == 0)
|
if (sz == 0)
|
||||||
goto end;
|
goto end;
|
||||||
|
|
||||||
if ((ptr = strchrW((LPWSTR)value, '"')) && (end = strchrW(++ptr, '"')))
|
if ((regType == REG_SZ || regType == REG_EXPAND_SZ) &&
|
||||||
|
(ptr = strchrW((LPWSTR)value, '"')) && (end = strchrW(++ptr, '"')))
|
||||||
*end = '\0';
|
*end = '\0';
|
||||||
else
|
else
|
||||||
ptr = (LPWSTR)value;
|
ptr = (LPWSTR)value;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user