Skip to content

Commit 58f3acc

Browse files
committedFeb 19, 2025
8345676: [ubsan] ProcessImpl_md.c:561:40: runtime error: applying zero offset to null pointer on macOS aarch64
Backport-of: 0285020c7ea01f32b32efe166a0a5dae39957216
1 parent 9d496c0 commit 58f3acc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/java.base/unix/native/libjava/ProcessImpl_md.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,9 @@ spawnChild(JNIEnv *env, jobject process, ChildStuff *c, const char *helperpath)
558558
return -1;
559559
}
560560
offset = copystrings(buf, 0, &c->argv[0]);
561-
offset = copystrings(buf, offset, &c->envv[0]);
561+
if (c->envv != NULL) {
562+
offset = copystrings(buf, offset, &c->envv[0]);
563+
}
562564
if (c->pdir != NULL) {
563565
if (sp.dirlen > 0) {
564566
memcpy(buf+offset, c->pdir, sp.dirlen);

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Feb 19, 2025

@openjdk-notifier[bot]
Please sign in to comment.