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
e189b546
Commit
e189b546
authored
Apr 08, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Make sure to use initialized variables.
parent
417c1047
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
htmlinput.c
dlls/mshtml/htmlinput.c
+1
-1
htmlselect.c
dlls/mshtml/htmlselect.c
+2
-2
No files found.
dlls/mshtml/htmlinput.c
View file @
e189b546
...
...
@@ -173,7 +173,7 @@ static HRESULT WINAPI HTMLInputElement_get_value(IHTMLInputElement *iface, BSTR
{
HTMLInputElement
*
This
=
HTMLINPUT_THIS
(
iface
);
nsAString
value_str
;
const
PRUnichar
*
value
;
const
PRUnichar
*
value
=
NULL
;
nsresult
nsres
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
...
...
dlls/mshtml/htmlselect.c
View file @
e189b546
...
...
@@ -169,7 +169,7 @@ static HRESULT WINAPI HTMLSelectElement_get_name(IHTMLSelectElement *iface, BSTR
{
HTMLSelectElement
*
This
=
HTMLSELECT_THIS
(
iface
);
nsAString
name_str
;
const
PRUnichar
*
name
;
const
PRUnichar
*
name
=
NULL
;
nsresult
nsres
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
...
...
@@ -243,7 +243,7 @@ static HRESULT WINAPI HTMLSelectElement_get_value(IHTMLSelectElement *iface, BST
{
HTMLSelectElement
*
This
=
HTMLSELECT_THIS
(
iface
);
nsAString
value_str
;
const
PRUnichar
*
value
;
const
PRUnichar
*
value
=
NULL
;
nsresult
nsres
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
...
...
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