commit | a71aaf66725e8fc02253a3bbea15d27e656434fe | [log] [tgz] |
---|---|---|
author | Larry Finger <Larry.Finger@lwfinger.net> | Mon Mar 23 14:07:57 2015 -0500 |
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | Tue Mar 24 11:40:36 2015 +0200 |
tree | 512345dbc248e428dd2ef3508143130fd787dc9d | |
parent | 1f16ea294d2ef63013740f4c8539e430b6c12dff [diff] |
iwlwifi: Fix memory leak in iwl_req_fw_callback() In this routine, kzalloc allocates a memory block. This allocation is freed in the error paths, but not in the normal exit, thus the allocation is leaked. The kmemleak facility was used to find the leak. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Cc: Johannes Berg <johannes.berg@intel.com> Cc: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Cc: Intel Linux Wireless <ilw@linux.intel.com>