commit | 39946886fc865a4c26f1b3ea0805936db2d8986d | [log] [tgz] |
---|---|---|
author | Dan Carpenter <dan.carpenter@oracle.com> | Fri Feb 28 12:22:59 2020 +0300 |
committer | Steve French <stfrench@microsoft.com> | Tue Mar 17 13:26:26 2020 -0500 |
tree | f668cd4abd909f616b731eb6553a1524714ba432 | |
parent | fb33c6510d5595144d585aa194d377cf74d31911 [diff] |
cifs: potential unintitliazed error code in cifs_getattr() Smatch complains that "rc" could be uninitialized. fs/cifs/inode.c:2206 cifs_getattr() error: uninitialized symbol 'rc'. Changing it to "return 0;" improves readability as well. Fixes: cc1baf98c8f6 ("cifs: do not ignore the SYNC flags in getattr") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Steve French <stfrench@microsoft.com> Acked-by: Ronnie Sahlberg <lsahlber@redhat.com>