Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
0fc177fe
Commit
0fc177fe
authored
Oct 28, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Set referer in case with no user headers too.
parent
687e5cd3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
httprequest.c
dlls/msxml3/httprequest.c
+6
-2
No files found.
dlls/msxml3/httprequest.c
View file @
0fc177fe
...
...
@@ -476,14 +476,18 @@ static HRESULT WINAPI BSCHttpNegotiate_BeginningTransaction(IHttpNegotiate *ifac
if
(
!
list_empty
(
&
This
->
request
->
reqheaders
))
size
+=
This
->
request
->
reqheader_size
*
sizeof
(
WCHAR
);
if
(
!
size
)
return
S_OK
;
if
(
This
->
request
->
base_uri
)
{
IUri_GetRawUri
(
This
->
request
->
base_uri
,
&
base_uri
);
size
+=
SysStringLen
(
base_uri
)
*
sizeof
(
WCHAR
)
+
sizeof
(
refererW
)
+
sizeof
(
crlfW
);
}
if
(
!
size
)
{
SysFreeString
(
base_uri
);
return
S_OK
;
}
buff
=
CoTaskMemAlloc
(
size
);
if
(
!
buff
)
{
...
...
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