diff options
Diffstat (limited to 'fs/sysfs/sysfs.h')
-rw-r--r-- | fs/sysfs/sysfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysfs/sysfs.h b/fs/sysfs/sysfs.h index 687d959f606d..f4fdbbffd571 100644 --- a/fs/sysfs/sysfs.h +++ b/fs/sysfs/sysfs.h | |||
@@ -111,7 +111,7 @@ static inline struct sysfs_dirent * sysfs_get(struct sysfs_dirent * sd) | |||
111 | 111 | ||
112 | static inline void sysfs_put(struct sysfs_dirent * sd) | 112 | static inline void sysfs_put(struct sysfs_dirent * sd) |
113 | { | 113 | { |
114 | if (atomic_dec_and_test(&sd->s_count)) | 114 | if (sd && atomic_dec_and_test(&sd->s_count)) |
115 | release_sysfs_dirent(sd); | 115 | release_sysfs_dirent(sd); |
116 | } | 116 | } |
117 | 117 | ||