From: Ian Abbott Date: Fri, 23 Aug 2013 11:37:17 +0000 (+0100) Subject: staging: comedi: bug-fix NULL pointer dereference on failed attach X-Git-Tag: v3.11-rc7~1^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3955dfa8216f712bc204a5ad2f4e51efff252fde;p=pandora-kernel.git staging: comedi: bug-fix NULL pointer dereference on failed attach Commit dcd7b8bd63cb81c5b973bf86510ca3c80bbbd162 ("staging: comedi: put module _after_ detach" by myself) reversed a couple of calls in `comedi_device_attach()` when recovering from an error returned by the low-level driver's 'attach' handler. Unfortunately, that introduced a NULL pointer dereference bug as `dev->driver` is NULL after the call to `comedi_device_detach()`. We still have a pointer to the low-level comedi driver structure in the `driv` variable, so use that instead. Signed-off-by: Ian Abbott Cc: # 3.10+ Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed