/[lwip]/lwip/src/core/pbuf.c
ViewVC logotype

Diff of /lwip/src/core/pbuf.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.57.2.9 by likewise, Tue Nov 18 00:48:05 2003 UTC revision 1.57.2.10 by jani, Tue Nov 18 14:44:48 2003 UTC
# Line 655  pbuf_cat(struct pbuf *h, struct pbuf *t) Line 655  pbuf_cat(struct pbuf *h, struct pbuf *t)
655    
656    LWIP_ASSERT("h != NULL", h != NULL);    LWIP_ASSERT("h != NULL", h != NULL);
657    LWIP_ASSERT("t != NULL", t != NULL);    LWIP_ASSERT("t != NULL", t != NULL);
658    if ((h = NULL) || (t == NULL)) return;    if ((h == NULL) || (t == NULL)) return;
659    
660    /* proceed to last pbuf of chain */    /* proceed to last pbuf of chain */
661    for (p = h; p->next != NULL; p = p->next) {    for (p = h; p->next != NULL; p = p->next) {

Legend:
Removed from v.1.57.2.9  
changed lines
  Added in v.1.57.2.10

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26