Branch: refs/heads/alert-autofix-21 Home: https://github.com/bluez/bluez Commit: 1984573513daf25b7da6b39b39a0f166c00dd182 https://github.com/bluez/bluez/commit/1984573513daf25b7da6b39b39a0f166c00dd182 Author: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> Date: 2025-04-28 (Mon, 28 Apr 2025) Changed paths: M src/main.c Log Message: ----------- main: Potential fix for code scanning alert no. 21 Comparison of narrow type with wide type in loop condition Comparison between of type uint16_t and of wider type size_t. In a loop condition, comparison of a value of a narrow type with a value of a wide type may result in unexpected behavior if the wider value is sufficiently large (or small). This is because the narrower value may overflow. This can lead to an infinite loop. Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> To unsubscribe from these emails, change your notification settings at https://github.com/bluez/bluez/settings/notifications