From: Peter Huewe Date: Wed, 13 Feb 2013 14:28:14 +0000 (+0100) Subject: staging/comedi: Fix undefined array subscript X-Git-Tag: v3.9-rc1~127^2~48 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc9ca48eb60f4a516f59bbde1dc7685744ceb310;p=pandora-kernel.git staging/comedi: Fix undefined array subscript In vmk80xx_do_insn_bits the local variable reg, which is used as an index to the tx_buf array, can be used uninitialized if - data[0] == 0 and - devpriv->model != VMK8061_MODEL -> we get into the else branch without having reg initialized. Since the driver usually differentiates between VMK8061_MODEL and VMK8055_MODEL it's safe to assume that VMK8055_DO_REG was meant as an initial value. And to avoid duplication we can move the assignments to the top. Acked-by: Ian Abbott Acked-by: Dan Carpenter Signed-off-by: Peter Huewe Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed