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
98b8ebaf
Commit
98b8ebaf
authored
Dec 29, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 29, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use IUri in IHTMLLocation::get_protocol implementation.
parent
723ae056
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
13 deletions
+20
-13
htmllocation.c
dlls/mshtml/htmllocation.c
+20
-13
No files found.
dlls/mshtml/htmllocation.c
View file @
98b8ebaf
...
...
@@ -276,7 +276,8 @@ static HRESULT WINAPI HTMLLocation_put_protocol(IHTMLLocation *iface, BSTR v)
static
HRESULT
WINAPI
HTMLLocation_get_protocol
(
IHTMLLocation
*
iface
,
BSTR
*
p
)
{
HTMLLocation
*
This
=
impl_from_IHTMLLocation
(
iface
);
URL_COMPONENTSW
url
=
{
sizeof
(
URL_COMPONENTSW
)};
BSTR
protocol
,
ret
;
unsigned
len
;
HRESULT
hres
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
...
...
@@ -284,22 +285,28 @@ static HRESULT WINAPI HTMLLocation_get_protocol(IHTMLLocation *iface, BSTR *p)
if
(
!
p
)
return
E_POINTER
;
url
.
dwSchemeLength
=
1
;
hres
=
get_url_components
(
This
,
&
url
);
if
(
!
This
->
window
||
!
This
->
window
->
uri
)
{
FIXME
(
"No current URI
\n
"
);
return
E_NOTIMPL
;
}
hres
=
IUri_GetSchemeName
(
This
->
window
->
uri
,
&
protocol
);
if
(
FAILED
(
hres
))
return
hres
;
if
(
!
url
.
dwSchemeLength
)
{
FIXME
(
"Unexpected blank protocol
\n
"
);
return
E_NOTIMPL
;
}
else
{
WCHAR
*
buf
;
buf
=
*
p
=
SysAllocStringLen
(
NULL
,
url
.
dwSchemeLength
+
1
);
memcpy
(
buf
,
url
.
lpszScheme
,
url
.
dwSchemeLength
*
sizeof
(
WCHAR
));
buf
[
url
.
dwSchemeLength
]
=
':'
;
if
(
hres
==
S_FALSE
)
{
SysFreeString
(
protocol
);
*
p
=
NULL
;
return
S_OK
;
}
if
(
!*
p
)
len
=
SysStringLen
(
protocol
);
ret
=
SysAllocStringLen
(
protocol
,
len
+
1
);
SysFreeString
(
protocol
);
if
(
!
ret
)
return
E_OUTOFMEMORY
;
ret
[
len
]
=
':'
;
*
p
=
ret
;
return
S_OK
;
}
...
...
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