Browse Source

satip: use vlc_send()

pull/104/head
Rémi Denis-Courmont 6 years ago
parent
commit
43b3330078
  1. 2
      modules/access/satip.c

2
modules/access/satip.c

@ -411,7 +411,7 @@ static void satip_teardown(void *data) {
return;
}
ret = send(sys->tcp_sock, msg + sent, len, MSG_NOSIGNAL);
ret = vlc_send(sys->tcp_sock, msg + sent, len, 0);
if (ret < 0) {
msg_Err(access, "Failed to send RTSP teardown: %d\n", ret);
free(msg);

Loading…
Cancel
Save