Skip to content

Commit 0346673

Browse files
committed
fix(validateGeneration): prevent digits
1 parent 72bf6f0 commit 0346673

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

libs/validators.c

+7
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,14 @@ int validateDelay(char* delay) {
2121
}
2222

2323
int validateGeneration(char* generation) {
24+
int i;
2425
int generationInt;
26+
int generationLength = strlen(generation);
27+
28+
for (i = 0; i < generationLength; i++) {
29+
if (!isdigit(*(generation + i))) return 0;
30+
}
31+
2532
sscanf(generation, "%d", &generationInt);
2633
return generationInt >= INT_MIN && generationInt <= INT_MAX;
2734
}

0 commit comments

Comments
 (0)