From: sdhsdh Date: Mon, 15 Feb 2010 15:16:47 +0000 (+0000) Subject: should fix pointer warning X-Git-Tag: rc_6_tinyos_2_1_1~12 X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=commitdiff_plain;h=d520e0df83a5188e7a7c6f7bec791e27cb127719 should fix pointer warning --- diff --git a/tos/lib/net/blip/TcpP.nc b/tos/lib/net/blip/TcpP.nc index 4ade476c..23d6cd6d 100644 --- a/tos/lib/net/blip/TcpP.nc +++ b/tos/lib/net/blip/TcpP.nc @@ -65,12 +65,14 @@ module TcpP { struct tcplib_sock *tcplib_accept(struct tcplib_sock *conn, struct sockaddr_in6 *from) { int cid = find_client(conn); + int buf_len; printfUART("tcplib_accept: cid: %i\n", cid); if (cid == N_CLIENTS) return NULL; - if (signal Tcp.accept[cid](from, &conn->tx_buf, &conn->tx_buf_len)) { + if (signal Tcp.accept[cid](from, &conn->tx_buf, &buf_len)) { if (conn->tx_buf == NULL) return NULL; + conn->tx_buf_len = buf_len; return conn; } return NULL;