Move a kfree() below the last use of the memory Coverity CID: 13142 Signed-off-by: Darren Jenkins <darrenrjenkins@xxxxxxxxx> diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c index df5b684..15b8b3c 100644 --- a/drivers/edac/amd64_edac.c +++ b/drivers/edac/amd64_edac.c @@ -2925,10 +2925,10 @@ static void __devexit amd64_remove_one_instance(struct pci_dev *pdev) amd64_free_mc_sibling_devices(pvt); - kfree(pvt); mci->pvt_info = NULL; mci_lookup[pvt->mc_node_id] = NULL; + kfree(pvt); /* unregister from EDAC MCE */ amd_report_gart_errors(false); -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html