Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b6f2919b
Commit
b6f2919b
authored
Mar 04, 2010
by
Joris Huizer
Committed by
Alexandre Julliard
Mar 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: create_channelbsc: Handle OOM case correctly.
parent
a607f537
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
navigate.c
dlls/mshtml/navigate.c
+2
-1
No files found.
dlls/mshtml/navigate.c
View file @
b6f2919b
...
...
@@ -1136,7 +1136,8 @@ HRESULT create_channelbsc(IMoniker *mon, WCHAR *headers, BYTE *post_data, DWORD
if
(
post_data
)
{
ret
->
bsc
.
post_data
=
GlobalAlloc
(
0
,
post_data_size
);
if
(
!
ret
->
bsc
.
headers
)
{
if
(
!
ret
->
bsc
.
post_data
)
{
heap_free
(
ret
->
bsc
.
headers
);
IBindStatusCallback_Release
(
STATUSCLB
(
&
ret
->
bsc
));
return
E_OUTOFMEMORY
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment