Feature: Fix (unused) mVideoProxyBackendRun with block=true

This commit is contained in:
Vicki Pfau 2024-04-14 04:17:15 -07:00
parent 237d502404
commit f13a087b04
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ bool mVideoProxyBackendRun(struct mVideoProxyBackend* proxy, bool block) {
} }
ok = true; ok = true;
} }
} while (block); } while (block && !ok);
return ok; return ok;
} }