mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
urlmon: Always verify mime using FindMimeFromData.
This commit is contained in:
parent
b1d1507ed8
commit
101c18537a
1 changed files with 2 additions and 6 deletions
|
@ -862,12 +862,8 @@ static HRESULT WINAPI InternetProtocolSink_ReportData(IInternetProtocolSink *ifa
|
|||
|
||||
fill_stream_buffer(This->stream);
|
||||
|
||||
/* FIXME: Always call FindMediaFromData (its implementation is not yet ready for this). */
|
||||
if(This->mime)
|
||||
mime = This->mime;
|
||||
else
|
||||
FindMimeFromData(NULL, This->url, This->stream->buf,
|
||||
min(This->stream->buf_size, 255), This->mime, 0, &mime, 0);
|
||||
FindMimeFromData(NULL, This->url, This->stream->buf,
|
||||
min(This->stream->buf_size, 255), This->mime, 0, &mime, 0);
|
||||
|
||||
on_progress(This, ulProgress, ulProgressMax, BINDSTATUS_MIMETYPEAVAILABLE, mime);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue