Changeset 7fa8589 in mainline for uspace/lib/c/generic/inet
- Timestamp:
- 2020-01-09T01:04:58Z (6 years ago)
- Children:
- bcd7775
- Parents:
- 76c8209
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2020-01-05 20:21:10)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2020-01-09 01:04:58)
- Location:
- uspace/lib/c/generic/inet
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/inet/tcp.c
r76c8209 r7fa8589 240 240 return EOK; 241 241 error: 242 return (errno_t)rc;242 return rc; 243 243 } 244 244 … … 360 360 error: 361 361 free(lst); 362 return (errno_t)rc;362 return rc; 363 363 } 364 364 -
uspace/lib/c/generic/inet/udp.c
r76c8209 r7fa8589 200 200 error: 201 201 free(assoc); 202 return (errno_t)rc;202 return rc; 203 203 } 204 204
Note:
See TracChangeset
for help on using the changeset viewer.
