Browse Source

Remove dead assignment.

Georgi Chorbadzhiyski 9 years ago
parent
commit
27d7a76f3b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      tomcast.c

+ 1
- 1
tomcast.c View File

@@ -851,7 +851,7 @@ void * proxy_ts_stream(void *self) {
851 851
 
852 852
 			if (send_reset) {
853 853
 				send_reset = 0;
854
-				written = fdwrite(r->clientsock, reset, FRAME_PACKET_SIZE);
854
+				fdwrite(r->clientsock, reset, FRAME_PACKET_SIZE);
855 855
 			}
856 856
 			written = fdwrite(r->clientsock, buf, FRAME_PACKET_SIZE);
857 857
 			if (written == -1) {

Loading…
Cancel
Save