mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-14 09:39:22 +00:00
ip_frag: fix compiler warnings, unused variable
In case of IP_REASS_FREE_OLDEST==0, the argument clen of ip_reass_enqueue_new_datagram() will not used and leads the compiler to a warning. Signed-off-by: Stephan Linz <linz@li-pro.net>
This commit is contained in:
parent
289d1dd7f3
commit
80375e68dd
@ -274,6 +274,10 @@ static struct ip_reassdata*
|
|||||||
ip_reass_enqueue_new_datagram(struct ip_hdr *fraghdr, int clen)
|
ip_reass_enqueue_new_datagram(struct ip_hdr *fraghdr, int clen)
|
||||||
{
|
{
|
||||||
struct ip_reassdata* ipr;
|
struct ip_reassdata* ipr;
|
||||||
|
#if ! IP_REASS_FREE_OLDEST
|
||||||
|
LWIP_UNUSED_ARG(clen);
|
||||||
|
#endif
|
||||||
|
|
||||||
/* No matching previous fragment found, allocate a new reassdata struct */
|
/* No matching previous fragment found, allocate a new reassdata struct */
|
||||||
ipr = (struct ip_reassdata *)memp_malloc(MEMP_REASSDATA);
|
ipr = (struct ip_reassdata *)memp_malloc(MEMP_REASSDATA);
|
||||||
if (ipr == NULL) {
|
if (ipr == NULL) {
|
||||||
|
Loading…
Reference in New Issue
Block a user