mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-06 03:18:13 +00:00
Fix sdltest_randomAsciiStringWithMaximumLength() where it requests a string a size 0
seen with: ./testautomation --seed MILAFAP2AKVP3V4G --filter sdltest_randomAsciiStringWithMaximumLength
This commit is contained in:
@@ -470,7 +470,9 @@ SDLTest_RandomAsciiStringWithMaximumLength(int maxLength)
|
|||||||
}
|
}
|
||||||
|
|
||||||
size = (SDLTest_RandomUint32() % (maxLength + 1));
|
size = (SDLTest_RandomUint32() % (maxLength + 1));
|
||||||
|
if (size == 0) {
|
||||||
|
size = 1;
|
||||||
|
}
|
||||||
return SDLTest_RandomAsciiStringOfSize(size);
|
return SDLTest_RandomAsciiStringOfSize(size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user