diff options
author | Justus Winter <justus@gnupg.org> | 2017-08-30 13:10:48 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2017-09-01 01:46:52 +0200 |
commit | 812117cfbd76fadfd6c20913db665619070c170e (patch) | |
tree | 78c83826a9ac7d261c76bd5a4317d346f56ff968 /trans | |
parent | 7f49fa0b2dbd371c3b10d876eeed7a26812506b4 (diff) | |
download | hurd-812117cfbd76fadfd6c20913db665619070c170e.tar.gz hurd-812117cfbd76fadfd6c20913db665619070c170e.tar.bz2 hurd-812117cfbd76fadfd6c20913db665619070c170e.zip |
trans/mtab: Fix warnings.
* trans/mtab.c (get_credentials): Fix error handling.
(mtab_populate): Fix type.
(trivfs_S_io_seek): Avoid implicit fallthrough warnings.
Diffstat (limited to 'trans')
-rw-r--r-- | trans/mtab.c | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/trans/mtab.c b/trans/mtab.c index c03749cc..a69ede6e 100644 --- a/trans/mtab.c +++ b/trans/mtab.c @@ -141,31 +141,34 @@ size_t uids_len, gids_len; error_t get_credentials (void) { + int len, len_; /* Fetch uids... */ - uids_len = geteuids (0, 0); - if (uids_len < 0) + len = geteuids (0, NULL); + if (len < 0) return errno; - uids = malloc (uids_len * sizeof (uid_t)); + uids = malloc (len * sizeof (uid_t)); if (! uids) return ENOMEM; - uids_len = geteuids (uids_len, uids); - if (uids_len < 0) + len_ = geteuids (len, uids); + if (len_ != len) return errno; + uids_len = (size_t) len; /* ... and gids. */ - gids_len = getgroups (0, 0); - if (gids_len < 0) + len = getgroups (0, NULL); + if (len < 0) return errno; - gids = malloc (gids_len * sizeof (gid_t)); - if (! uids) + gids = malloc (len * sizeof (gid_t)); + if (! gids) return ENOMEM; - gids_len = getgroups (gids_len, gids); - if (gids_len < 0) + len_ = getgroups (len, gids); + if (len_ != len) return errno; + gids_len = (size_t) len; return 0; } @@ -428,7 +431,7 @@ mtab_populate (struct mtab *mtab, const char *path, int insecure) goto errout; } - for (int i = 1; i < count - 1; i++) + for (size_t i = 1; i < count - 1; i++) { char *v = argv[i]; @@ -775,13 +778,14 @@ trivfs_S_io_seek (struct trivfs_protid *cred, goto check; case SEEK_END: offs += op->contents_len; + goto check; case SEEK_SET: check: if (offs >= 0) - { - *new_offs = op->offs = offs; - break; - } + *new_offs = op->offs = offs; + else + err = EINVAL; + break; default: err = EINVAL; } |