diff options
author | wollman <wollman@FreeBSD.org> | 2009-11-25 04:45:45 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2009-11-25 04:45:45 +0000 |
commit | a98dd21d5f02e42d66bdd19531580000647322e8 (patch) | |
tree | 01f0d0420123a2fbc4530d2d7bd607cbf6ee8049 /lib/libc/gen/getusershell.c | |
parent | 0bb16760a11c0384ebde0564be95b7c5711ce69e (diff) | |
download | FreeBSD-src-a98dd21d5f02e42d66bdd19531580000647322e8.zip FreeBSD-src-a98dd21d5f02e42d66bdd19531580000647322e8.tar.gz |
Eliminate more dead stores.
Found by: Clang static analyzer
MFC after: 7 days
Diffstat (limited to 'lib/libc/gen/getusershell.c')
-rw-r--r-- | lib/libc/gen/getusershell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/gen/getusershell.c b/lib/libc/gen/getusershell.c index b0da2a1..d09b50c 100644 --- a/lib/libc/gen/getusershell.c +++ b/lib/libc/gen/getusershell.c @@ -124,7 +124,7 @@ _local_initshells(rv, cb_data, ap) if ((fp = fopen(_PATH_SHELLS, "r")) == NULL) return NS_UNAVAIL; - sp = cp = line; + cp = line; while (fgets(cp, MAXPATHLEN + 1, fp) != NULL) { while (*cp != '#' && *cp != '/' && *cp != '\0') cp++; |