Commit f5c2806c authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Remove a misleading ERR, as this fails if a file doesn't exist, which is common.

parent 4a71ab79
...@@ -162,8 +162,6 @@ static LPWSTR deformat_file(MSIPACKAGE* package, LPCWSTR key, DWORD* sz, ...@@ -162,8 +162,6 @@ static LPWSTR deformat_file(MSIPACKAGE* package, LPCWSTR key, DWORD* sz,
} }
else else
{ {
ERR("Unable to get ShortPath size (%s)\n",
debugstr_w( file->TargetPath) );
value = strdupW( file->TargetPath ); value = strdupW( file->TargetPath );
*sz = (lstrlenW(value)) * sizeof(WCHAR); *sz = (lstrlenW(value)) * sizeof(WCHAR);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment