Browse Source

remove needless assertion

pull/11/head
Richard Fuchs 12 years ago
parent
commit
2e9ae75fb0
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      daemon/call.c

+ 2
- 1
daemon/call.c View File

@ -544,7 +544,8 @@ static int stream_packet(struct stream_fd *sfd, str *s, struct sockaddr_in6 *fsi
struct endpoint endpoint;
rewrite_func rwf_in, rwf_out;
assert(stream != NULL);
if (!stream)
return 0;
media = stream->media;
call = stream->call;
cm = call->callmaster;


Loading…
Cancel
Save