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
ed272490
Commit
ed272490
authored
Nov 09, 2003
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 09, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed buffer overflow.
Fixed two -Wwrite-strings warnings (but there are more).
parent
6e12807b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
process.c
dlls/kernel/tests/process.c
+3
-3
No files found.
dlls/kernel/tests/process.c
View file @
ed272490
...
...
@@ -64,7 +64,7 @@ static void release_memory(void)
/* ---------------- simplistic tool to encode/decode strings (to hide \ " ' and such) */
static
c
har
*
encodeA
(
const
char
*
str
)
static
c
onst
char
*
encodeA
(
const
char
*
str
)
{
char
*
ptr
;
size_t
len
,
i
;
...
...
@@ -78,7 +78,7 @@ static char* encodeA(const char* str)
return
ptr
;
}
static
c
har
*
encodeW
(
const
WCHAR
*
str
)
static
c
onst
char
*
encodeW
(
const
WCHAR
*
str
)
{
char
*
ptr
;
size_t
len
,
i
;
...
...
@@ -286,7 +286,7 @@ static void doChild(const char* file, const char* option)
{
lstrcpynW
(
env_var
,
ptrW
,
MAX_LISTED_ENV_VAR
-
1
);
env_var
[
MAX_LISTED_ENV_VAR
-
1
]
=
'\0'
;
childPrintf
(
hFile
,
"env%d=%s
\n
"
,
i
,
encodeW
(
ptrW
));
childPrintf
(
hFile
,
"env%d=%s
\n
"
,
i
,
encodeW
(
env_var
));
i
++
;
ptrW
+=
lstrlenW
(
ptrW
)
+
1
;
}
...
...
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