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
9321ed7c
Commit
9321ed7c
authored
Dec 21, 2011
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Fix VT_BSTR case for IXMLHttpRequest::send().
parent
8c03b4e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
13 deletions
+0
-13
httprequest.c
dlls/msxml3/httprequest.c
+0
-13
No files found.
dlls/msxml3/httprequest.c
View file @
9321ed7c
...
...
@@ -596,19 +596,6 @@ static HRESULT BindStatusCallback_create(httprequest* This, BindStatusCallback *
}
WideCharToMultiByte
(
cp
,
0
,
str
,
len
,
ptr
,
size
,
NULL
,
NULL
);
if
(
cp
==
CP_UTF8
)
This
->
use_utf8_content
=
TRUE
;
bsc
->
body
=
GlobalAlloc
(
GMEM_FIXED
,
size
);
if
(
!
bsc
->
body
)
{
heap_free
(
bsc
);
heap_free
(
ptr
);
return
E_OUTOFMEMORY
;
}
send_data
=
GlobalLock
(
bsc
->
body
);
memcpy
(
send_data
,
ptr
,
size
);
GlobalUnlock
(
bsc
->
body
);
heap_free
(
ptr
);
break
;
}
case
VT_ARRAY
|
VT_UI1
:
...
...
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