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
48ea8a1c
Commit
48ea8a1c
authored
Jan 22, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32/tests: Don't call InitializeSecurityContext on an uninitialized buffer.
Also documents failure on an invalid buffer.
parent
711b9f04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
schannel.c
dlls/secur32/tests/schannel.c
+14
-0
No files found.
dlls/secur32/tests/schannel.c
View file @
48ea8a1c
...
...
@@ -700,6 +700,19 @@ static void test_communication(void)
buffers
[
1
].
cBuffers
=
1
;
buffers
[
1
].
pBuffers
[
0
].
BufferType
=
SECBUFFER_TOKEN
;
buffers
[
0
].
pBuffers
[
0
].
cbBuffer
=
1
;
memset
(
buffers
[
1
].
pBuffers
[
0
].
pvBuffer
,
0xfa
,
buf_size
);
status
=
pInitializeSecurityContextA
(
&
cred_handle
,
&
context
,
(
SEC_CHAR
*
)
"localhost"
,
ISC_REQ_CONFIDENTIALITY
|
ISC_REQ_STREAM
,
0
,
0
,
&
buffers
[
1
],
0
,
NULL
,
&
buffers
[
0
],
&
attrs
,
NULL
);
todo_wine
ok
(
status
==
SEC_E_INVALID_TOKEN
,
"Expected SEC_E_INVALID_TOKEN, got %08x
\n
"
,
status
);
todo_wine
ok
(
buffers
[
0
].
pBuffers
[
0
].
cbBuffer
==
0
,
"Output buffer size was not set to 0.
\n
"
);
buffers
[
1
].
cBuffers
=
1
;
buffers
[
1
].
pBuffers
[
0
].
BufferType
=
SECBUFFER_TOKEN
;
buffers
[
0
].
pBuffers
[
0
].
cbBuffer
=
1
;
memset
(
buffers
[
1
].
pBuffers
[
0
].
pvBuffer
,
0
,
buf_size
);
status
=
pInitializeSecurityContextA
(
&
cred_handle
,
&
context
,
(
SEC_CHAR
*
)
"localhost"
,
ISC_REQ_CONFIDENTIALITY
|
ISC_REQ_STREAM
,
0
,
0
,
&
buffers
[
1
],
0
,
NULL
,
&
buffers
[
0
],
&
attrs
,
NULL
);
...
...
@@ -707,6 +720,7 @@ static void test_communication(void)
todo_wine
ok
(
buffers
[
0
].
pBuffers
[
0
].
cbBuffer
==
0
,
"Output buffer size was not set to 0.
\n
"
);
buffers
[
0
].
pBuffers
[
0
].
cbBuffer
=
0
;
status
=
pInitializeSecurityContextA
(
&
cred_handle
,
&
context
,
(
SEC_CHAR
*
)
"localhost"
,
ISC_REQ_CONFIDENTIALITY
|
ISC_REQ_STREAM
,
0
,
0
,
&
buffers
[
1
],
0
,
NULL
,
&
buffers
[
0
],
&
attrs
,
NULL
);
...
...
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