Changeset 989 for vendor/current/source3/lib/msghdr.c
- Timestamp:
- Nov 25, 2016, 8:04:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/lib/msghdr.c
r988 r989 205 205 msgsize - offsetof(struct msghdr_buf, buf) : 0; 206 206 207 fd_len = msghdr_prep_fds(&msg->msg, msg->buf, bufsize, fds, num_fds); 207 if (msg != NULL) { 208 msg->msg = (struct msghdr) { 0 }; 209 210 fd_len = msghdr_prep_fds(&msg->msg, msg->buf, bufsize, 211 fds, num_fds); 212 } else { 213 fd_len = msghdr_prep_fds(NULL, NULL, bufsize, fds, num_fds); 214 } 208 215 209 216 if (fd_len == -1) {
Note:
See TracChangeset
for help on using the changeset viewer.