mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
[INETCOMM] Sync with Wine Staging 2.9. CORE-13362
dcc545b inetcomm: Fixed buffer leak on error path (Coverity). svn path=/trunk/; revision=74808
This commit is contained in:
parent
8de656fc77
commit
acfef1de4a
2 changed files with 4 additions and 2 deletions
|
@ -487,8 +487,10 @@ static HRESULT WINAPI MimeHtmlProtocol_Start(IInternetProtocol *iface, const WCH
|
|||
binding->url[url.mhtml_len] = 0;
|
||||
|
||||
hres = CreateURLMoniker(NULL, binding->url, &mon);
|
||||
if(FAILED(hres))
|
||||
if(FAILED(hres)) {
|
||||
heap_free(binding);
|
||||
return hres;
|
||||
}
|
||||
|
||||
binding->IBindStatusCallback_iface.lpVtbl = &BindStatusCallbackVtbl;
|
||||
binding->ref = 1;
|
||||
|
|
|
@ -78,7 +78,7 @@ reactos/dll/win32/ieframe # Synced to WineStaging-2.9
|
|||
reactos/dll/win32/imaadp32.acm # Synced to WineStaging-2.2
|
||||
reactos/dll/win32/imagehlp # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/imm32 # Synced to Wine-1.7.27
|
||||
reactos/dll/win32/inetcomm # Synced to WineStaging-2.2
|
||||
reactos/dll/win32/inetcomm # Synced to WineStaging-2.9
|
||||
reactos/dll/win32/inetmib1 # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/initpki # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/inseng # Synced to WineStaging-2.2
|
||||
|
|
Loading…
Reference in a new issue