msi: Remove unneeded cast.
This commit is contained in:
parent
edaa0fbc13
commit
15d6436295
|
@ -585,7 +585,7 @@ static DWORD deformat_string_internal(MSIPACKAGE *package, LPCWSTR ptr,
|
||||||
if (value!=NULL)
|
if (value!=NULL)
|
||||||
{
|
{
|
||||||
LPBYTE nd2;
|
LPBYTE nd2;
|
||||||
TRACE("value %s, chunk %i size %i\n",debugstr_w((LPWSTR)value),
|
TRACE("value %s, chunk %i size %i\n",debugstr_w(value),
|
||||||
chunk, size);
|
chunk, size);
|
||||||
if (size)
|
if (size)
|
||||||
nd2= msi_realloc(newdata,(size + chunk));
|
nd2= msi_realloc(newdata,(size + chunk));
|
||||||
|
|
Loading…
Reference in New Issue