Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
c49bb259
Commit
c49bb259
authored
Apr 28, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 28, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Removed invalid nsAString_InitDepend from HTMLTable_put_bgColor and fixed error handling.
parent
8b81af32
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
htmltable.c
dlls/mshtml/htmltable.c
+3
-3
No files found.
dlls/mshtml/htmltable.c
View file @
c49bb259
...
...
@@ -251,11 +251,11 @@ static HRESULT WINAPI HTMLTable_put_bgColor(IHTMLTable *iface, VARIANT v)
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
nsAString_InitDepend
(
&
val
,
V_BSTR
(
&
v
));
variant_to_nscolor
(
&
v
,
&
val
);
if
(
!
variant_to_nscolor
(
&
v
,
&
val
))
return
S_OK
;
nsres
=
nsIDOMHTMLTableElement_SetBgColor
(
This
->
nstable
,
&
val
);
nsAString_Finish
(
&
val
);
if
(
NS_FAILED
(
nsres
)){
ERR
(
"Set BgColor(%s) failed!
\n
"
,
debugstr_variant
(
&
v
));
return
E_FAIL
;
...
...
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