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
76c556ad
Commit
76c556ad
authored
Dec 16, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Dec 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Cast-qual warnings fix.
parent
0689e9ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
object.c
server/object.c
+3
-2
No files found.
server/object.c
View file @
76c556ad
...
...
@@ -290,14 +290,15 @@ void release_object( void *ptr )
struct
object
*
find_object
(
const
struct
namespace
*
namespace
,
const
struct
unicode_str
*
name
,
unsigned
int
attributes
)
{
const
struct
list
*
list
,
*
p
;
const
struct
list
*
list
;
struct
list
*
p
;
if
(
!
name
||
!
name
->
len
)
return
NULL
;
list
=
&
namespace
->
names
[
get_name_hash
(
namespace
,
name
->
str
,
name
->
len
)
];
LIST_FOR_EACH
(
p
,
list
)
{
const
struct
object_name
*
ptr
=
LIST_ENTRY
(
p
,
const
struct
object_name
,
entry
);
const
struct
object_name
*
ptr
=
LIST_ENTRY
(
p
,
struct
object_name
,
entry
);
if
(
ptr
->
len
!=
name
->
len
)
continue
;
if
(
attributes
&
OBJ_CASE_INSENSITIVE
)
{
...
...
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