From a84ba759b315c9c591104a926e53638605855c46 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Fri, 11 Sep 2009 15:43:52 -0700 Subject: [PATCH] pxe: lwip: update data pointer after getting a secondary fragment After we receive a secondary fragment we need to update the frame data pointer. Signed-off-by: H. Peter Anvin --- core/lwip/src/netif/undiif.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/lwip/src/netif/undiif.c b/core/lwip/src/netif/undiif.c index d557f29..69f2d76 100644 --- a/core/lwip/src/netif/undiif.c +++ b/core/lwip/src/netif/undiif.c @@ -229,6 +229,7 @@ low_level_input(t_PXENV_UNDI_ISR *isr) * Only received a partial frame, must get the next one... */ get_packet_fragment(isr); + r = GET_PTR(isr->Frame); } else { memcpy(s, r, qb); s += qb; -- 2.7.4