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
7c83bd84
Commit
7c83bd84
authored
Sep 17, 2012
by
Charles Davis
Committed by
Alexandre Julliard
Sep 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Fix potential use of uninitialized variable (Clang).
parent
10cdc265
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
http.c
dlls/urlmon/http.c
+1
-2
No files found.
dlls/urlmon/http.c
View file @
7c83bd84
...
...
@@ -215,10 +215,9 @@ static HRESULT handle_http_error(HttpProtocol *This, DWORD error)
hres
=
IWindowForBindingUI_GetWindow
(
wfb_ui
,
iid_reason
,
&
hwnd
);
IWindowForBindingUI_Release
(
wfb_ui
);
if
(
FAILED
(
hres
))
hwnd
=
NULL
;
}
if
(
FAILED
(
hres
))
hwnd
=
NULL
;
dlg_flags
=
FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS
|
FLAGS_ERROR_UI_FLAGS_GENERATE_DATA
;
if
(
This
->
base
.
bindf
&
BINDF_NO_UI
)
...
...
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