diff --git a/net/uip/uip-tcpconn.c b/net/uip/uip-tcpconn.c
index edeb464eca7808264b653a15eca161941a3e5299..952db877428c6c3fd1e94fc043ea666f98a78068 100644
--- a/net/uip/uip-tcpconn.c
+++ b/net/uip/uip-tcpconn.c
@@ -284,6 +284,9 @@ struct uip_conn *uip_tcpalloc(void)
 
 void uip_tcpfree(struct uip_conn *conn)
 {
+#if CONFIG_NET_NTCP_READAHEAD_BUFFERS > 0
+  struct uip_readahead_s *readahead;
+#endif
   irqstate_t flags;
 
   /* Because g_free_tcp_connections is accessed from user level and interrupt
@@ -304,6 +307,15 @@ void uip_tcpfree(struct uip_conn *conn)
       dq_rem(&conn->node, &g_free_tcp_connections);
     }
 
+  /* Release any read-ahead buffers attached to the connection */
+
+#if CONFIG_NET_NTCP_READAHEAD_BUFFERS > 0
+  while ((readahead = (struct uip_readahead_s *)sq_remfirst(&conn->readahead)) != NULL)
+    {
+      uip_tcpreadaheadrelease(readahead);
+    }
+#endif
+
   /* Mark the connection available and put it into the free list */
 
   conn->tcpstateflags = UIP_CLOSED;