Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 25580
b: refs/heads/master
c: cd15654
h: refs/heads/master
v: v3
  • Loading branch information
NeilBrown authored and Linus Torvalds committed Apr 11, 2006
1 parent 326566b commit 3698ee4
Show file tree
Hide file tree
Showing 2 changed files with 3 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: b5872b0dcc0501035d5ae53c60f8cbbb3798da8a
refs/heads/master: cd15654963cf7e4dd938a403de3ec5bcd09f8350
3 changes: 2 additions & 1 deletion trunk/fs/nfsd/export.c
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen)
if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
goto out;
err = path_lookup(buf, 0, &nd);
if (err) goto out;
if (err) goto out_no_path;

exp.h.flags = 0;
exp.ex_client = dom;
Expand Down Expand Up @@ -475,6 +475,7 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen)
out:
if (nd.dentry)
path_release(&nd);
out_no_path:
if (dom)
auth_domain_put(dom);
kfree(buf);
Expand Down

0 comments on commit 3698ee4

Please sign in to comment.