summaryrefslogtreecommitdiff
path: root/src/pulsecore/protocol-native.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pulsecore/protocol-native.c')
-rw-r--r--src/pulsecore/protocol-native.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pulsecore/protocol-native.c b/src/pulsecore/protocol-native.c
index 1342dee10..98b8795d9 100644
--- a/src/pulsecore/protocol-native.c
+++ b/src/pulsecore/protocol-native.c
@@ -5068,9 +5068,9 @@ static void pstream_memblock_callback(pa_pstream *p, uint32_t channel, int64_t o
playback_stream *ps = PLAYBACK_STREAM(stream);
size_t frame_size = pa_frame_size(&ps->sink_input->sample_spec);
- if (chunk->index % frame_size != 0 || chunk->length % frame_size != 0) {
- pa_log_warn("Client sent non-aligned memblock: index %d, length %d, frame size: %d",
- (int) chunk->index, (int) chunk->length, (int) frame_size);
+ if (chunk->length % frame_size != 0) {
+ pa_log_warn("Client sent non-aligned memblock: length %d, frame size: %d",
+ (int) chunk->length, (int) frame_size);
return;
}