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
84863dff
Commit
84863dff
authored
May 19, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Use constant to store supported safety options.
parent
ec2114e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
httprequest.c
dlls/msxml3/httprequest.c
+6
-6
No files found.
dlls/msxml3/httprequest.c
View file @
84863dff
...
...
@@ -55,6 +55,10 @@ WINE_DEFAULT_DEBUG_CHANNEL(msxml);
static
const
WCHAR
colspaceW
[]
=
{
':'
,
' '
,
0
};
static
const
WCHAR
crlfW
[]
=
{
'\r'
,
'\n'
,
0
};
static
const
DWORD
safety_supported_options
=
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
|
INTERFACE_USES_SECURITY_MANAGER
;
typedef
struct
BindStatusCallback
BindStatusCallback
;
...
...
@@ -1495,8 +1499,6 @@ static ULONG WINAPI httprequest_Safety_Release(IObjectSafety *iface)
return
IXMLHTTPRequest_Release
((
IXMLHTTPRequest
*
)
This
);
}
#define SAFETY_SUPPORTED_OPTIONS (INTERFACESAFE_FOR_UNTRUSTED_CALLER|INTERFACESAFE_FOR_UNTRUSTED_DATA|INTERFACE_USES_SECURITY_MANAGER)
static
HRESULT
WINAPI
httprequest_Safety_GetInterfaceSafetyOptions
(
IObjectSafety
*
iface
,
REFIID
riid
,
DWORD
*
supported
,
DWORD
*
enabled
)
{
...
...
@@ -1506,7 +1508,7 @@ static HRESULT WINAPI httprequest_Safety_GetInterfaceSafetyOptions(IObjectSafety
if
(
!
supported
||
!
enabled
)
return
E_POINTER
;
*
supported
=
SAFETY_SUPPORTED_OPTIONS
;
*
supported
=
safety_supported_options
;
*
enabled
=
This
->
safeopt
;
return
S_OK
;
...
...
@@ -1518,7 +1520,7 @@ static HRESULT WINAPI httprequest_Safety_SetInterfaceSafetyOptions(IObjectSafety
httprequest
*
This
=
impl_from_IObjectSafety
(
iface
);
TRACE
(
"(%p)->(%s %x %x)
\n
"
,
This
,
debugstr_guid
(
riid
),
mask
,
enabled
);
if
((
mask
&
~
SAFETY_SUPPORTED_OPTIONS
)
!=
0
)
if
((
mask
&
~
safety_supported_options
)
)
return
E_FAIL
;
This
->
safeopt
=
(
This
->
safeopt
&
~
mask
)
|
(
mask
&
enabled
);
...
...
@@ -1526,8 +1528,6 @@ static HRESULT WINAPI httprequest_Safety_SetInterfaceSafetyOptions(IObjectSafety
return
S_OK
;
}
#undef SAFETY_SUPPORTED_OPTIONS
static
const
IObjectSafetyVtbl
ObjectSafetyVtbl
=
{
httprequest_Safety_QueryInterface
,
httprequest_Safety_AddRef
,
...
...
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