params: Fix potential memory leak in add_sysfs_param()
authorDavid Woodhouse <David.Woodhouse@intel.com>
Thu, 14 Mar 2013 13:23:11 +0000 (13:23 +0000)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Mon, 18 Mar 2013 11:40:21 +0000 (11:40 +0000)
On allocation failure, it would fail to free the old attrs array which
was no longer referenced by anything (since it would free the old
module_param_attrs struct on the way out).

Comment the suspicious-looking krealloc() usage to explain why it *isn't*
actually buggy, despite looking like a classic realloc() usage bug.

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>

No differences found