projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
mac80211: add pending patches for throughput based led blinking and replace the broke...
[openwrt.git]
/
package
/
wprobe
/
src
/
user
/
wprobe-lib.c
diff --git
a/package/wprobe/src/user/wprobe-lib.c
b/package/wprobe/src/user/wprobe-lib.c
index
7ba67cf
..
7a5460b
100644
(file)
--- a/
package/wprobe/src/user/wprobe-lib.c
+++ b/
package/wprobe/src/user/wprobe-lib.c
@@
-560,7
+560,9
@@
wprobe_msg_to_network(int socket, struct nl_msg *msg)
mhdr.status = WPROBE_MSG_DATA;
mhdr.len = buflen;
wprobe_swap_msg_hdr(&mhdr);
mhdr.status = WPROBE_MSG_DATA;
mhdr.len = buflen;
wprobe_swap_msg_hdr(&mhdr);
- write(socket, &mhdr, sizeof(mhdr));
+ ret = write(socket, &mhdr, sizeof(mhdr));
+ if (ret < 0)
+ goto out;
memcpy(buf, nlh, buflen);
nlh = buf;
memcpy(buf, nlh, buflen);
nlh = buf;
@@
-572,6
+574,8
@@
wprobe_msg_to_network(int socket, struct nl_msg *msg)
swap_genlmsghdr(gnlh);
swap_nlmsghdr(nlh);
ret = write(socket, buf, buflen);
swap_genlmsghdr(gnlh);
swap_nlmsghdr(nlh);
ret = write(socket, buf, buflen);
+
+out:
free(buf);
return ret;
free(buf);
return ret;
This page took
0.021843 seconds
and
4
git commands to generate.