Changeset f1a8c23 in mainline
- Timestamp:
- 2014-06-29T22:11:05Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1bdf307d
- Parents:
- ef1ddad
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/inet.c
ref1ddad rf1a8c23 1 1 /* 2 * Copyright (c) 201 2Jiri Svoboda2 * Copyright (c) 2013 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 34 34 #include <ipc/services.h> 35 35 #include <loc.h> 36 #include <stdlib.h> 36 37 37 38 static void inet_cb_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg); … … 224 225 225 226 rc = inet_ev_ops->recv(&dgram); 227 free(dgram.data); 226 228 async_answer_0(iid, rc); 227 229 } -
uspace/srv/net/udp/udp_inet.c
ref1ddad rf1a8c23 71 71 72 72 udp_received_pdu(pdu); 73 74 /* We don't want udp_pdu_delete() to free dgram->data */ 75 pdu->data = NULL; 73 76 udp_pdu_delete(pdu); 74 77
Note:
See TracChangeset
for help on using the changeset viewer.