From: Dan Carpenter Date: Mon, 18 Jun 2012 07:48:14 +0000 (+0300) Subject: airo: copying wrong data in airo_get_aplist() X-Git-Tag: v3.5-rc5~17^2~26^2~8 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f59ebb5f34380696d16094fa1090485ec077fb1;p=pandora-kernel.git airo: copying wrong data in airo_get_aplist() "qual" used to be declared on the stack, but then in 998a5a7d6a ("airo: reduce stack memory footprint") we made it dynamically allocated. Unfortunately the memcpy() here was missed and it's still copying stack memory instead of the data that we want. In other words, "&qual" should be "qual". Signed-off-by: Dan Carpenter Signed-off-by: John W. Linville --- Reading git-diff-tree failed