diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-12-12 21:47:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:29:12 -0500 |
commit | 6f733591330818fd3f7b79806098548fe7de650e (patch) | |
tree | ff33a7c74b1ae9664dde901614ecc43eb13976be /source4/lib/samba3 | |
parent | 4e93962ea544f2c32077a42071be3176c377b8e9 (diff) | |
download | samba-6f733591330818fd3f7b79806098548fe7de650e.tar.gz samba-6f733591330818fd3f7b79806098548fe7de650e.tar.xz samba-6f733591330818fd3f7b79806098548fe7de650e.zip |
r20134: The IBM Checker correctly notes that *p cannot be \0 and still satisfy
the loop entry condition.
Andrew Bartlett
(This used to be commit c1182751313290fc38af5b1c44bc66b5d1654977)
Diffstat (limited to 'source4/lib/samba3')
-rw-r--r-- | source4/lib/samba3/smbpasswd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source4/lib/samba3/smbpasswd.c b/source4/lib/samba3/smbpasswd.c index c19e90219f..14715a89f7 100644 --- a/source4/lib/samba3/smbpasswd.c +++ b/source4/lib/samba3/smbpasswd.c @@ -169,7 +169,6 @@ uint16_t smbpasswd_decode_acb_info(const char *p) break; case ':': case '\n': - case '\0': case ']': default: finished = True; |