Commit 67c6c24b authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shell32: A lot of lnk files have extra data blocks at the end, although they…

shell32: A lot of lnk files have extra data blocks at the end, although they don't seem to matter much. So drop the corresponding ERR() to a WARN().
parent 62c59dea
......@@ -924,7 +924,14 @@ static HRESULT WINAPI IPersistStream_fnLoad(
r = IStream_Read(stm, &zero, sizeof zero, &dwBytesRead);
if( FAILED( r ) || zero || dwBytesRead != sizeof zero )
ERR("Last word was not zero\n");
{
/* Some lnk files have extra data blocks starting with a
* DATABLOCK_HEADER. For instance EXP_SPECIAL_FOLDER and an unknown
* one with a 0xa0000003 signature. However these don't seem to matter
* too much.
*/
WARN("Last word was not zero\n");
}
TRACE("OK\n");
......
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