Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 258985
b: refs/heads/master
c: 7a99ae7
h: refs/heads/master
i:
  258983: f5d0b0f
v: v3
  • Loading branch information
Vitaliy Ivanov authored and Linus Torvalds committed Jul 26, 2011
1 parent 35c0352 commit 7ea4a57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: fbee8d933c775cdb9daac3063659cda38c1776c2
refs/heads/master: 7a99ae7c57d2de5cad9562bed32addf064521116
6 changes: 5 additions & 1 deletion trunk/arch/um/drivers/cow_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,11 @@ static int absolutize(char *to, int size, char *from)
strcat(to, "/");
strcat(to, from);
}
chdir(save_cwd);
if (chdir(save_cwd)) {
cow_printf("absolutize : Can't cd to '%s' - "
"errno = %d\n", save_cwd, errno);
return -1;
}
return 0;
}

Expand Down

0 comments on commit 7ea4a57

Please sign in to comment.