The patch titled media: video/tuner-core, fix memory leak has been removed from the -mm tree. Its filename was media-video-tuner-core-fix-memory-leak.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: media: video/tuner-core, fix memory leak From: Jiri Slaby <jslaby@xxxxxxx> Stanse found a memory leak in tuner_probe. t is not freed/assigned on all paths. Fix that. Signed-off-by: Jiri Slaby <jslaby@xxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Cc: Hans Verkuil <hverkuil@xxxxxxxxx> Cc: Michael Krufky <mkrufky@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/media/video/tuner-core.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/media/video/tuner-core.c~media-video-tuner-core-fix-memory-leak drivers/media/video/tuner-core.c --- a/drivers/media/video/tuner-core.c~media-video-tuner-core-fix-memory-leak +++ a/drivers/media/video/tuner-core.c @@ -1078,6 +1078,7 @@ static int tuner_probe(struct i2c_client goto register_client; } + kfree(t); return -ENODEV; case 0x42: case 0x43: _ Patches currently in -mm which might be from jslaby@xxxxxxx are origin.patch linux-next.patch infiniband-use-rlimit-helpers.patch char-synclink-remove-unnecessary-checks.patch mm-use-rlimit-helpers.patch fs-use-rlimit-helpers.patch ipc-use-rlimit-helpers.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