1
0
Fork 0

btrfs: filp_open() returns ERR_PTR() on failure, not NULL...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
hifive-unleashed-5.1
Al Viro 2014-12-14 02:59:17 -05:00
parent 603ba7e41b
commit 98af592f5b
1 changed files with 1 additions and 1 deletions

View File

@ -1485,7 +1485,7 @@ static void update_dev_time(char *path_name)
struct file *filp;
filp = filp_open(path_name, O_RDWR, 0);
if (!filp)
if (IS_ERR(filp))
return;
file_update_time(filp);
filp_close(filp, NULL);