qmuxd_wrapper: Fix stream_append()

we want to copy to the actual buffer... One ampersand less.
This commit is contained in:
Harald Welte 2016-12-25 22:00:00 +01:00
parent 897ac5238e
commit cdc4f97ab5
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ static void stream_append(struct qmuxd_stream *qs, const void *data, size_t len)
exit(2342);
}
memcpy(&qs->buf + qs->buf_used, data, len);
memcpy(qs->buf + qs->buf_used, data, len);
qs->buf_used += len;
}