Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions net/ieee802154/ieee802154_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ static int ieee802154_queue_frame(FAR struct ieee802154_conn_s *conn,

/* Free both the IOB and the container */

iob_free(container->ic_iob);
ieee802154_container_free(container, IOBUSER_NET_SOCK_IEEE802154);
iob_free(container->ic_iob, IOBUSER_NET_SOCK_IEEE802154);
ieee802154_container_free(container);
}
else
{
Expand Down
1 change: 1 addition & 0 deletions net/local/local_netpoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
#include <errno.h>
#include <debug.h>

#include <nuttx/semaphore.h>
#include <nuttx/net/net.h>
#include <nuttx/fs/fs.h>

Expand Down
2 changes: 1 addition & 1 deletion net/tcp/tcp_netpoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ int tcp_pollsetup(FAR struct socket *psock, FAR struct pollfd *fds)
FAR struct tcp_conn_s *conn = psock->s_conn;
FAR struct tcp_poll_s *info;
FAR struct devif_callback_s *cb;
int ret;
int ret = OK;

/* Sanity check */

Expand Down
2 changes: 1 addition & 1 deletion net/udp/udp_netpoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ int udp_pollsetup(FAR struct socket *psock, FAR struct pollfd *fds)
FAR struct udp_conn_s *conn = psock->s_conn;
FAR struct udp_poll_s *info;
FAR struct devif_callback_s *cb;
int ret;
int ret = OK;

/* Sanity check */

Expand Down