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
9c87c888
Commit
9c87c888
authored
Feb 18, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Fix tracing of invalid ACLs.
parent
8110dde8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
trace.c
server/trace.c
+2
-5
No files found.
server/trace.c
View file @
9c87c888
...
@@ -822,7 +822,7 @@ static void dump_inline_acl( const char *prefix, const ACL *acl, data_size_t siz
...
@@ -822,7 +822,7 @@ static void dump_inline_acl( const char *prefix, const ACL *acl, data_size_t siz
{
{
if
(
size
<
sizeof
(
ACL
))
if
(
size
<
sizeof
(
ACL
))
{
{
fprintf
(
stderr
,
"<invalid acl>}
\n
"
);
fprintf
(
stderr
,
"<invalid acl>}"
);
return
;
return
;
}
}
size
-=
sizeof
(
ACL
);
size
-=
sizeof
(
ACL
);
...
@@ -832,10 +832,7 @@ static void dump_inline_acl( const char *prefix, const ACL *acl, data_size_t siz
...
@@ -832,10 +832,7 @@ static void dump_inline_acl( const char *prefix, const ACL *acl, data_size_t siz
const
SID
*
sid
=
NULL
;
const
SID
*
sid
=
NULL
;
data_size_t
sid_size
=
0
;
data_size_t
sid_size
=
0
;
if
(
size
<
sizeof
(
ACE_HEADER
))
if
(
size
<
sizeof
(
ACE_HEADER
)
||
size
<
ace
->
AceSize
)
break
;
return
;
if
(
size
<
ace
->
AceSize
)
return
;
size
-=
ace
->
AceSize
;
size
-=
ace
->
AceSize
;
if
(
i
!=
0
)
fputc
(
','
,
stderr
);
if
(
i
!=
0
)
fputc
(
','
,
stderr
);
fprintf
(
stderr
,
"{AceType="
);
fprintf
(
stderr
,
"{AceType="
);
...
...
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