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
2cfe3cac
Commit
2cfe3cac
authored
Aug 09, 2015
by
Indrek Altpere
Committed by
Alexandre Julliard
Aug 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Handle nsIDOMWindow_GetFrames returning NULL.
parent
a15751ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
htmlwindow.c
dlls/mshtml/htmlwindow.c
+5
-0
No files found.
dlls/mshtml/htmlwindow.c
View file @
2cfe3cac
...
...
@@ -380,6 +380,11 @@ HRESULT get_frame_by_name(HTMLOuterWindow *This, const WCHAR *name, BOOL deep, H
return
E_FAIL
;
}
if
(
!
nsframes
)
{
WARN
(
"nsIDOMWindow_GetFrames returned NULL nsframes: %p
\n
"
,
This
->
nswindow
);
return
DISP_E_MEMBERNOTFOUND
;
}
nsAString_InitDepend
(
&
name_str
,
name
);
nsres
=
nsIDOMWindowCollection_NamedItem
(
nsframes
,
&
name_str
,
&
nswindow
);
nsAString_Finish
(
&
name_str
);
...
...
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