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
8e73e411
Commit
8e73e411
authored
Jun 19, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Jun 21, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Write-strings warnings fix.
parent
89ed2d97
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
server.c
dlls/ntdll/server.c
+4
-2
No files found.
dlls/ntdll/server.c
View file @
8e73e411
...
...
@@ -590,6 +590,8 @@ static void start_server(void)
{
static
int
started
;
/* we only try once */
char
*
argv
[
3
];
static
char
wineserver
[]
=
"server/wineserver"
;
static
char
debug
[]
=
"-d"
;
if
(
!
started
)
{
...
...
@@ -598,8 +600,8 @@ static void start_server(void)
if
(
pid
==
-
1
)
fatal_perror
(
"fork"
);
if
(
!
pid
)
{
argv
[
0
]
=
"server/wineserver"
;
argv
[
1
]
=
TRACE_ON
(
server
)
?
"-d"
:
NULL
;
argv
[
0
]
=
wineserver
;
argv
[
1
]
=
TRACE_ON
(
server
)
?
debug
:
NULL
;
argv
[
2
]
=
NULL
;
wine_exec_wine_binary
(
argv
[
0
],
argv
,
getenv
(
"WINESERVER"
)
);
fatal_error
(
"could not exec wineserver
\n
"
);
...
...
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