summaryrefslogtreecommitdiff
path: root/ratox.c
diff options
context:
space:
mode:
Diffstat (limited to 'ratox.c')
-rw-r--r--ratox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ratox.c b/ratox.c
index c0ebf2a..d5ca466 100644
--- a/ratox.c
+++ b/ratox.c
@@ -488,12 +488,12 @@ sendfriendcalldata(struct friend *f)
TOXAV_ERR_SEND_FRAME err;
n = fiforead(f->dirfd, &f->fd[FCALL_IN], ffiles[FCALL_IN],
- f->av.frame + (f->av.state & INCOMPLETE)/INCOMPLETE * f->av.n,
- framesize * sizeof(int16_t) - (f->av.state & INCOMPLETE)/INCOMPLETE * f->av.n);
+ f->av.frame + (f->av.state & INCOMPLETE ? f->av.n : 0),
+ framesize * sizeof(int16_t) - (f->av.state & INCOMPLETE ? f->av.n : 0));
if (n == 0) {
f->av.state &= ~OUTGOING;
return;
- } else if (n < 0 || n > framesize * sizeof(int16_t)) {
+ } else if (n < 0) {
return;
} else if (n == (framesize * sizeof(int16_t) - (f->av.state & INCOMPLETE) * f->av.n)) {
f->av.state &= ~INCOMPLETE;