urlmon: Assign to structs instead of using memcpy.

This commit is contained in:
Andrew Talbot 2008-03-18 21:42:20 +00:00 committed by Alexandre Julliard
parent 39f138a298
commit dbe7718e2b
2 changed files with 3 additions and 3 deletions

View File

@ -1083,7 +1083,7 @@ static HRESULT WINAPI InternetProtocolSink_Switch(IInternetProtocolSink *iface,
TRACE("(%p)->(%p)\n", This, pProtocolData);
task = heap_alloc(sizeof(switch_task_t));
memcpy(&task->data, pProtocolData, sizeof(PROTOCOLDATA));
task->data = *pProtocolData;
push_task(This, &task->header, switch_proc);
@ -1382,7 +1382,7 @@ static HRESULT WINAPI InternetBindInfo_GetBindInfo(IInternetBindInfo *iface,
*grfBINDF = This->bindf;
memcpy(pbindinfo, &This->bindinfo, sizeof(BINDINFO));
*pbindinfo = This->bindinfo;
if(pbindinfo->szExtraInfo || pbindinfo->szCustomVerb)
FIXME("copy strings\n");

View File

@ -398,7 +398,7 @@ HRESULT WINAPI CopyStgMedium(const STGMEDIUM *src, STGMEDIUM *dst)
if(!src || !dst)
return E_POINTER;
memcpy(dst, src, sizeof(STGMEDIUM));
*dst = *src;
switch(dst->tymed) {
case TYMED_NULL: