Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 08b714e7 authored by Namjae Jeon's avatar Namjae Jeon
Browse files

exfat: fix uninitialized return value on kernel < 4.16

parent e7fd3551
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ static inline void exfat_d_version_set(struct dentry *dentry,
 */
static int exfat_d_revalidate(struct dentry *dentry, unsigned int flags)
{
	int ret;
	int ret = 1;

	if (flags & LOOKUP_RCU)
		return -ECHILD;