The patch titled isd200: Fix memory leak in isd200_get_inquiry_data has been added to the -mm tree. Its filename is isd200-fix-memory-leak-in-isd200_get_inquiry_data.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: isd200: Fix memory leak in isd200_get_inquiry_data From: Boaz Harrosh <bharrosh@xxxxxxxxxxx> If the inquiry fails then the call to us->extra_destructor() is assumed to also free the info structure. So make that so in isd200_free_info_ptrs() Signed-off-by: Boaz Harrosh <bharrosh@xxxxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxx> Cc: Oliver Neukum <oliver@xxxxxxxxxx> Cc: Matthew Dharm <mdharm-usb@xxxxxxxxxxxxxxxxxx> Cc: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/usb/storage/isd200.c | 3 +++ 1 file changed, 3 insertions(+) diff -puN drivers/usb/storage/isd200.c~isd200-fix-memory-leak-in-isd200_get_inquiry_data drivers/usb/storage/isd200.c --- a/drivers/usb/storage/isd200.c~isd200-fix-memory-leak-in-isd200_get_inquiry_data +++ a/drivers/usb/storage/isd200.c @@ -1471,6 +1471,9 @@ static void isd200_free_info_ptrs(void * kfree(info->id); kfree(info->RegsBuf); kfree(info->sense_buffer); + kfree(info); + us->extra = NULL; + us->extra_destructor = NULL; } } _ Patches currently in -mm which might be from bharrosh@xxxxxxxxxxx are git-scsi-misc.patch gdth-allocate-sense_buffer-to-prevent-null-pointer-dereference.patch isd200-allocate-sense_buffer-for-hacked-up-scsi_cmnd.patch isd200-allocate-sense_buffer-for-hacked-up-scsi_cmnd-checkpatch-fixes.patch isd200-fix-memory-leak-in-isd200_get_inquiry_data.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