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
e432d54f
Commit
e432d54f
authored
Feb 03, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed potential crash in fd_dump function.
parent
c6ec3a32
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
fd.c
server/fd.c
+3
-2
No files found.
server/fd.c
View file @
e432d54f
...
...
@@ -1068,8 +1068,9 @@ void async_terminate( struct async *async, int status )
static
void
fd_dump
(
struct
object
*
obj
,
int
verbose
)
{
struct
fd
*
fd
=
(
struct
fd
*
)
obj
;
fprintf
(
stderr
,
"Fd unix_fd=%d user=%p unlink='%s'
\n
"
,
fd
->
unix_fd
,
fd
->
user
,
fd
->
closed
->
unlink
);
fprintf
(
stderr
,
"Fd unix_fd=%d user=%p"
,
fd
->
unix_fd
,
fd
->
user
);
if
(
fd
->
inode
)
fprintf
(
stderr
,
" inode=%p unlink='%s'"
,
fd
->
inode
,
fd
->
closed
->
unlink
);
fprintf
(
stderr
,
"
\n
"
);
}
static
void
fd_destroy
(
struct
object
*
obj
)
...
...
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