The patch titled Uninitialized variable in drivers/net/wan/syncppp.c has been removed from the -mm tree. Its filename is uninitialized-variable-in-drivers-net-wan-syncpppc.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Uninitialized variable in drivers/net/wan/syncppp.c From: Eric Sesterhenn <snakebyte@xxxxxx> For len equal to 4, we never call sppp_lcp_conf_parse_options(), therefore rmagic does not get initialized. Signed-off-by: Eric Sesterhenn <snakebyte@xxxxxx> Acked-by: Paul Fulghum <paulkf@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/wan/syncppp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/wan/syncppp.c~uninitialized-variable-in-drivers-net-wan-syncpppc drivers/net/wan/syncppp.c --- a/drivers/net/wan/syncppp.c~uninitialized-variable-in-drivers-net-wan-syncpppc +++ a/drivers/net/wan/syncppp.c @@ -469,7 +469,7 @@ static void sppp_lcp_input (struct sppp struct net_device *dev = sp->pp_if; int len = skb->len; u8 *p, opt[6]; - u32 rmagic; + u32 rmagic = 0; if (!pskb_may_pull(skb, sizeof(struct lcp_header))) { if (sp->pp_flags & PP_DEBUG) _ Patches currently in -mm which might be from snakebyte@xxxxxx are origin.patch git-dvb.patch git-gfs2.patch possible-dereference-in.patch git-intelfb.patch remove-unnecessary-check-in-drivers-video-intelfb-intelfbhwc.patch remove-unnecessary-check-in-drivers-net-depcac.patch off-by-one-in-arch-ppc-platforms-mpc8.patch git-scsi-misc.patch remove-unnecessary-check-in-drivers-scsi-sgc.patch overrun-in-drivers-scsi-scsic.patch off-by-one-in-drivers-char-mwave-mwaveddc.patch remove-unnecessary-check-in-drivers-rtc-rtc-v3020c.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