# This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.1349 -> 1.1350 # net/ipv4/ipvs/ip_vs_xmit.c 1.6 -> 1.7 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/11/12 ja@xxxxxx 1.1350 # [IPVS]: avoid NULL ptr deref for dest in __ip_vs_get_out_rt # -------------------------------------------- # diff -Nru a/net/ipv4/ipvs/ip_vs_xmit.c b/net/ipv4/ipvs/ip_vs_xmit.c --- a/net/ipv4/ipvs/ip_vs_xmit.c Wed Nov 12 01:00:35 2003 +++ b/net/ipv4/ipvs/ip_vs_xmit.c Wed Nov 12 01:00:35 2003 @@ -98,7 +98,7 @@ .oif = 0, .nl_u = { .ip4_u = { - .daddr = dest->addr, + .daddr = cp->daddr, .saddr = 0, .tos = rtos, } }, };