[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[hurd] 28/98: utils: fix dead initialization
From: |
Samuel Thibault |
Subject: |
[hurd] 28/98: utils: fix dead initialization |
Date: |
Tue, 14 Jan 2014 01:59:59 +0000 |
This is an automated email from the git hooks/post-receive script.
sthibault pushed a commit to branch upstream
in repository hurd.
commit 32e60534c7e2b6093de74bd75d37cb117f1d3a5c
Author: Justus Winter <address@hidden>
Date: Wed Nov 20 11:22:34 2013 +0100
utils: fix dead initialization
Found using the Clang Static Analyzer.
* utils/frobauth.c (posix_parse_opt): Fix dead initialization.
(no_ugids_parse_opt): Likewise.
---
utils/frobauth.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/utils/frobauth.c b/utils/frobauth.c
index ccb7c3b..44690d8 100644
--- a/utils/frobauth.c
+++ b/utils/frobauth.c
@@ -209,7 +209,7 @@ ea_parse_opt (int key, char *arg, struct argp_state *state)
static error_t
posix_parse_opt (int key, char *arg, struct argp_state *state)
{
- struct frobauth_argp_state *fs = state->hook;
+ struct frobauth_argp_state *fs;
switch (key)
{
@@ -233,7 +233,7 @@ posix_parse_opt (int key, char *arg, struct argp_state
*state)
static error_t
no_ugids_parse_opt (int key, char *arg, struct argp_state *state)
{
- struct frobauth_argp_state *fs = state->hook;
+ struct frobauth_argp_state *fs;
switch (key)
{
--
Alioth's /usr/local/bin/git-commit-notice on
/srv/git.debian.org/git/pkg-hurd/hurd.git
- [hurd] branch upstream updated (90b039d -> 5aa7b58), Samuel Thibault, 2014/01/13
- [hurd] 22/98: mach-defpager: fix the page offsets returned by pager_pages, Samuel Thibault, 2014/01/13
- [hurd] 28/98: utils: fix dead initialization,
Samuel Thibault <=
- [hurd] 29/98: libps: fix the length computation in fprint_frac_value, Samuel Thibault, 2014/01/13
- [hurd] 27/98: Merge branch 'master' of git.savannah.gnu.org:/srv/git/hurd/hurd, Samuel Thibault, 2014/01/13
- [hurd] 35/98: libshouldbeinlibc: fix error handling in maptime_map, Samuel Thibault, 2014/01/13
- [hurd] 25/98: libports: implement lockless management of threads, Samuel Thibault, 2014/01/13
- [hurd] 33/98: usermux: actually use the computed flags value in netfs_attempt_utimes, Samuel Thibault, 2014/01/13
- [hurd] 32/98: nfsd: fix error handling in op_remove, Samuel Thibault, 2014/01/13
- [hurd] 30/98: fatfs: fix error handling in diskfs_lookup_hard, Samuel Thibault, 2014/01/13
- [hurd] 42/98: libports: improve error handling in ports_transfer_right, Samuel Thibault, 2014/01/13
- [hurd] 43/98: libdiskfs: improve error reporting in diskfs_start_disk_pager, Samuel Thibault, 2014/01/13
- [hurd] 44/98: libports: improve error reporting in adjust_priority, Samuel Thibault, 2014/01/13