Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 258986
b: refs/heads/master
c: 2fdf213
h: refs/heads/master
v: v3
  • Loading branch information
Vitaliy Ivanov authored and Linus Torvalds committed Jul 26, 2011
1 parent 7ea4a57 commit b80b1d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7a99ae7c57d2de5cad9562bed32addf064521116
refs/heads/master: 2fdf2130926f07881c75e3905ece472c37d7703f
4 changes: 2 additions & 2 deletions trunk/arch/um/os-Linux/helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ static int helper_child(void *arg)
{
struct helper_data *data = arg;
char **argv = data->argv;
int err;
int err, ret;

if (data->pre_exec != NULL)
(*data->pre_exec)(data->pre_data);
err = execvp_noalloc(data->buf, argv[0], argv);

/* If the exec succeeds, we don't get here */
write(data->fd, &err, sizeof(err));
CATCH_EINTR(ret = write(data->fd, &err, sizeof(err)));

return 0;
}
Expand Down

0 comments on commit b80b1d6

Please sign in to comment.