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
d197252f
Commit
d197252f
authored
Oct 19, 2015
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libwine: Pass the correct length to GetStringUTFRegion.
Spotted by Jactry Zeng. Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
175138a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
loader.c
libs/wine/loader.c
+2
-1
No files found.
libs/wine/loader.c
View file @
d197252f
...
...
@@ -851,7 +851,8 @@ static jstring wine_init_jni( JNIEnv *env, jobject obj, jobjectArray cmdline, jo
{
jobject
str_obj
=
(
*
env
)
->
GetObjectArrayElement
(
env
,
cmdline
,
i
);
length
=
(
*
env
)
->
GetStringUTFLength
(
env
,
str_obj
);
(
*
env
)
->
GetStringUTFRegion
(
env
,
str_obj
,
0
,
length
,
str
);
(
*
env
)
->
GetStringUTFRegion
(
env
,
str_obj
,
0
,
(
*
env
)
->
GetStringLength
(
env
,
str_obj
),
str
);
argv
[
i
]
=
str
;
str
[
length
]
=
0
;
str
+=
length
+
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