Fix sdltest_randomAsciiStringWithMaximumLength() where it requests a string a size 0

seen with: ./testautomation --seed MILAFAP2AKVP3V4G --filter sdltest_randomAsciiStringWithMaximumLength
This commit is contained in:
Sylvain 2023-03-21 12:24:45 +01:00 committed by Anonymous Maarten
parent d8b34b0993
commit df6db90dd4

View File

@ -471,7 +471,9 @@ char *SDLTest_RandomAsciiStringWithMaximumLength(int maxLength)
}
size = (SDLTest_RandomUint32() % (maxLength + 1));
if (size == 0) {
size = 1;
}
return SDLTest_RandomAsciiStringOfSize(size);
}