fix: break infinite loop in user session renewal handler

This commit is contained in:
2025-11-23 12:53:36 +00:00
parent a4b38b7822
commit 0b53a5bef3
17 changed files with 708 additions and 36 deletions
+14
View File
@@ -0,0 +1,14 @@
int main() {
printf("Start\n");
int i = 0;
while (i < 5) {
i = i + 1;
if (i == 3) {
printf("Skipping i = %d\n", i);
continue;
}
printf("i = %d\n", i);
}
printf("Done\n");
return 0;
}