diff options
author | Tony Luck <tony.luck@intel.com> | 2010-05-18 09:53:25 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-18 13:47:31 -0400 |
commit | d4d1ef4515cca074d5bbe1c63420822d6b20fe63 (patch) | |
tree | 86012cc372641a92173b07dd6eea2998f373d3fd /drivers/edac | |
parent | ac1ececea995fd77c8da6a1299674f22991cecaa (diff) |
i7core_edac: don't free on success
Signed-off-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/edac')
-rw-r--r-- | drivers/edac/i7core_edac.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/edac/i7core_edac.c b/drivers/edac/i7core_edac.c index 82acfbd01779..3e2b5379bc05 100644 --- a/drivers/edac/i7core_edac.c +++ b/drivers/edac/i7core_edac.c | |||
@@ -1856,7 +1856,8 @@ static int i7core_register_mci(struct i7core_dev *i7core_dev, | |||
1856 | } | 1856 | } |
1857 | 1857 | ||
1858 | fail: | 1858 | fail: |
1859 | edac_mc_free(mci); | 1859 | if (rc < 0) |
1860 | edac_mc_free(mci); | ||
1860 | return rc; | 1861 | return rc; |
1861 | } | 1862 | } |
1862 | 1863 | ||