On Thu, Dec 16, 2021 at 5:30 AM Andrey Gusev <andrey.goosev@gmail.com> wrote:
-�� �� �� �� if ((unbounded = descriptor_count == UINT_MAX))
+�� �� �� �� if ((unbounded = descriptor_count) == UINT_MAX)


'unbounded' is a bool, so we do in fact want to assign it the value of descriptor_count == UINT_MAX, though for clarity it could use extra parentheses around the condition.
��