]> git.ipfire.org Git - people/ms/linux.git/commitdiff
staging: lustre: uapi: check if argument for lustre_cfg_buf() is NULL
authorJames Simmons <jsimmons@infradead.org>
Sun, 20 Aug 2017 02:26:22 +0000 (22:26 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 23 Aug 2017 01:36:49 +0000 (18:36 -0700)
Check if lcfg passed in is NULL and if it is just return NULL.

Signed-off-by: James Simmons <uja.ornl@yahoo.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6245
Reviewed-on: https://review.whamcloud.com/22138
Reviewed-by: Dmitry Eremin <dmitry.eremin@intel.com>
Reviewed-by: Jinshan Xiong <jinshan.xiong@intel.com>
Reviewed-by: Fan Yong <fan.yong@intel.com>
Reviewed-by: Oleg Drokin <oleg.drokin@intel.com>
Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/include/uapi/linux/lustre/lustre_cfg.h

index 4d2393870ccd96d7d3511a5cdf150d31ee00dcdb..4208d61cb37bc3bf0061addc3045c80526c7acb8 100644 (file)
@@ -161,6 +161,9 @@ static inline void *lustre_cfg_buf(struct lustre_cfg *lcfg, __u32 index)
        size_t offset;
        __u32 bufcount;
 
+       if (!lcfg)
+               return NULL;
+
        bufcount = lcfg->lcfg_bufcount;
        if (index >= bufcount)
                return NULL;