Commit edd69607 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

shell32: memset only gets character (Coverity).

parent 1548c2b9
......@@ -4063,7 +4063,7 @@ static HRESULT WINAPI fsbd_GetFindData_nul(IFileSystemBindData *fsbd,
static HRESULT WINAPI fsbd_GetFindData_junk(IFileSystemBindData *fsbd,
WIN32_FIND_DATAW *pfd)
{
memset(pfd, 0xdeadbeef, sizeof(WIN32_FIND_DATAW));
memset(pfd, 0xef, sizeof(WIN32_FIND_DATAW));
return S_OK;
}
......
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