summaryrefslogtreecommitdiff
path: root/nuttx/net/iob/iob_concat.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/net/iob/iob_concat.c')
-rw-r--r--nuttx/net/iob/iob_concat.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/nuttx/net/iob/iob_concat.c b/nuttx/net/iob/iob_concat.c
index 38a32473b..6875984ff 100644
--- a/nuttx/net/iob/iob_concat.c
+++ b/nuttx/net/iob/iob_concat.c
@@ -86,10 +86,7 @@ void iob_concat(FAR struct iob_s *iob1, FAR struct iob_s *iob2)
iob1->io_flink = iob2;
- /* Combine the total packet size. flags, VLAN, tags, and private
- * data from iob2 are lost.
- */
+ /* Combine the total packet size */
iob1->io_pktlen += iob2->io_pktlen;
- iob2->io_priv = NULL;
}