Changeset 50027 in vbox
- Timestamp:
- Jan 7, 2014 12:22:53 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/lwip-new/src/core/tcp_out.c
r47886 r50027 779 779 return ERR_MEM; 780 780 } 781 LWIP_ASSERT("seg->tcphdr not aligned", ((mem_ptr_t)seg->tcphdr % MEM_ALIGNMENT) == 0); 781 LWIP_ASSERT("seg->tcphdr not aligned", 782 ((mem_ptr_t)seg->tcphdr % (MEM_ALIGNMENT < 4 ? MEM_ALIGNMENT : 4)) == 0); 782 783 LWIP_ASSERT("tcp_enqueue_flags: invalid segment length", seg->len == 0); 783 784
Note:
See TracChangeset
for help on using the changeset viewer.