From: H Hartley Sweeten Date: Mon, 20 Apr 2015 18:49:06 +0000 (-0700) Subject: staging: comedi: serial2002: fix Coverity "Explicit null dereference" X-Git-Tag: omap-for-v4.3/legacy-v2-signed~121^2~962 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a437dee5335e3b5fdb82199f11eebf3f41bf5b8e;p=pandora-kernel.git staging: comedi: serial2002: fix Coverity "Explicit null dereference" serial2002_setup_subdevices() initializes each subdevice based on the config read from the attached serial device. Part of this initialization is to setup the subdevice range_table_list for the non digital subdevices. The range_table_list is allocated only when a 'range' is passed to the functions. Each channel of the subdevice then has it's 'range' initialized and that range is added to the range_table_list. The logic of this function works but causes Coverity complain about an Explicit null dereference of the allocated 'range_table_list'. Add a check for the 'range_table_list' to quiet the Coverity issue. Reported-by: coverity (CID 1011632) Signed-off-by: H Hartley Sweeten Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed