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
bdc223ad
Commit
bdc223ad
authored
Jun 02, 2015
by
Qian Hong
Committed by
Alexandre Julliard
Jun 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Fix type name of IoCompletion.
parent
7a7fc1e6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
om.c
dlls/ntdll/tests/om.c
+1
-1
completion.c
server/completion.c
+1
-1
No files found.
dlls/ntdll/tests/om.c
View file @
bdc223ad
...
...
@@ -818,7 +818,7 @@ static void test_query_object(void)
str
=
(
UNICODE_STRING
*
)
buffer
;
expected_len
=
sizeof
(
OBJECT_TYPE_INFORMATION
)
+
str
->
Length
+
sizeof
(
WCHAR
);
ok
(
len
>=
expected_len
,
"unexpected len %u
\n
"
,
len
);
todo_wine
ok
(
str
->
Buffer
&&
!
memcmp
(
str
->
Buffer
,
type_iocompletion
,
sizeof
(
type_iocompletion
)
),
ok
(
str
->
Buffer
&&
!
memcmp
(
str
->
Buffer
,
type_iocompletion
,
sizeof
(
type_iocompletion
)
),
"wrong/bad type name %s (%p)
\n
"
,
wine_dbgstr_w
(
str
->
Buffer
),
str
->
Buffer
);
pNtClose
(
handle
);
...
...
server/completion.c
View file @
bdc223ad
...
...
@@ -109,7 +109,7 @@ static void completion_dump( struct object *obj, int verbose )
static
struct
object_type
*
completion_get_type
(
struct
object
*
obj
)
{
static
const
WCHAR
name
[]
=
{
'C'
,
'o'
,
'm'
,
'p'
,
'l'
,
'e'
,
't'
,
'i'
,
'o'
,
'n'
};
static
const
WCHAR
name
[]
=
{
'
I'
,
'o'
,
'
C'
,
'o'
,
'm'
,
'p'
,
'l'
,
'e'
,
't'
,
'i'
,
'o'
,
'n'
};
static
const
struct
unicode_str
str
=
{
name
,
sizeof
(
name
)
};
return
get_object_type
(
&
str
);
}
...
...
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