Skip to content

Commit

Permalink
removing tab space and resolving merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
kspeeyu committed Jul 10, 2023
1 parent 199781b commit b4acf4c
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/java.base/unix/native/libjava/ProcessImpl_md.c
Original file line number Diff line number Diff line change
Expand Up @@ -563,11 +563,7 @@ spawnChild(JNIEnv *env, jobject process, ChildStuff *c, const char *helperpath)
/* write the two structs and the data buffer */
if (writeFully(c->childenv[1], (char *)&magic, sizeof(magic)) != sizeof(magic)) { // magic number first
free(buf);
<<<<<<< HEAD
return -1;
=======
return -1;
>>>>>>> ca127f59105d786ba85da5ca941e8d76bb030aca
}
#ifdef DEBUG
jtregSimulateCrash(resultPid, 2);
Expand All @@ -576,11 +572,7 @@ spawnChild(JNIEnv *env, jobject process, ChildStuff *c, const char *helperpath)
writeFully(c->childenv[1], (char *)&sp, sizeof(sp)) != sizeof(sp) ||
writeFully(c->childenv[1], buf, bufsize) != bufsize) {
free(buf);
<<<<<<< HEAD
return -1;
=======
return -1;
>>>>>>> ca127f59105d786ba85da5ca941e8d76bb030aca
}
/* We're done. Let jspwanhelper know he can't expect any more data from us. */
close(c->childenv[1]);
Expand Down

0 comments on commit b4acf4c

Please sign in to comment.