MediaNode: Wait for 0 time if the absolute timeout is in the past

This commit is contained in:
Dario Casalinuovo
2015-08-26 17:22:13 +02:00
parent dfe056fd6a
commit ae9cbf9c4e
+4
View File
@@ -343,6 +343,10 @@ BMediaNode::WaitForMessage(bigtime_t waitUntil, uint32 flags,
char data[B_MEDIA_MESSAGE_SIZE];
int32 message;
ssize_t size;
if (waitUntil < TimeSource()->RealTime())
waitUntil = 0;
while (true) {
size = read_port_etc(ControlPort(), &message, data,
sizeof(data), B_ABSOLUTE_TIMEOUT, waitUntil);