From a286e34de0568903e93d54beb1c62ce19f1b5031 Mon Sep 17 00:00:00 2001 From: David Matlack Date: Mon, 5 May 2014 21:02:32 -0700 Subject: [PATCH] staging: slicoss: fix multiple free-after-free in slic_entry_remove This patch fixes two free-after-free bugs in slic_entry_remove. Specifically, slic_unmap_mmio_space() iounmaps adapter->slic_regs, which is the same region of memory as dev->base_addr (iounmap-ed a few lines later). Next, both release_mem_region() and pci_release_regions() are called on the same pci_dev struct. Signed-off-by: David Matlack Signed-off-by: Greg Kroah-Hartman --- Reading git-format-patch failed