The patch titled i4l: memory leak fix for sc_ioctl(). has been removed from the -mm tree. Its filename is i4l-memory-leak-fix-for-sc_ioctl.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: i4l: memory leak fix for sc_ioctl(). From: Jesper Juhl <jesper.juhl@xxxxxxxxx> Fix leak of `rcvmsg' in sc_ioctl(). There are two returns in the switch in sc_ioctl (the SCIOCSTART case) that may leak `rcvmsg'. This patch fixes that by adding a kfree() call at the beginning of that case. Bug found by the coverity checker as #1098 Eric Sesterhenn send me a patch to fix the leak(s) by adding 2 kfree() calls before the returns, I changed that into just a single call at the beginning. Signed-off-by: Jesper Juhl <jesper.juhl@xxxxxxxxx> Cc: Karsten Keil <kkeil@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/isdn/sc/ioctl.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/isdn/sc/ioctl.c~i4l-memory-leak-fix-for-sc_ioctl drivers/isdn/sc/ioctl.c --- a/drivers/isdn/sc/ioctl.c~i4l-memory-leak-fix-for-sc_ioctl +++ a/drivers/isdn/sc/ioctl.c @@ -97,6 +97,7 @@ int sc_ioctl(int card, scs_ioctl *data) case SCIOCSTART: { + kfree(rcvmsg); pr_debug("%s: SCIOSTART: ioctl received\n", sc_adapter[card]->devicename); if(sc_adapter[card]->EngineUp) { _ Patches currently in -mm which might be from jesper.juhl@xxxxxxxxx are origin.patch fix-use-after-free-bug-in-cpia2-driver.patch small-whitespace-cleanup-for-qlogic-driver.patch add-scsi_add_host-failure-handling-for-nsp32.patch ensure-null-deref-cant-possibly-happen-in-is_exported.patch bluetooth-fix-potential-null-ptr-deref-in-dtl1_cscdtl1_hci_send_frame.patch pnp-card_probe-fix-memory-leak.patch moxa-remove-pointless-casts.patch moxa-remove-pointless-check-of-tty-argument-vs-null.patch moxa-partial-codingstyle-cleanup-spelling-fixes.patch correct-sak-description-in-sysrqtxt.patch i-force-joystick-remove-some-pointless-casts.patch debug-shared-irqs.patch remove-redundant-null-checks-before-free-in-fs.patch remove-redundant-null-checks-before-free-in-kernel.patch remove-redundant-null-checks-before-free-in-drivers.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html