Removed test for "corrupted binary dump"

Test is too non portable. (For instance, it does not work for
different number types.)
This commit is contained in:
Roberto Ierusalimschy
2023-09-08 16:19:21 -03:00
parent edd8589f47
commit 6baee9ef9d
2 changed files with 1 additions and 15 deletions

View File

@@ -81,7 +81,7 @@ static size_t loadUnsigned (LoadState *S, size_t limit) {
static size_t loadSize (LoadState *S) {
return loadUnsigned(S, ~(size_t)0);
return loadUnsigned(S, MAX_SIZET);
}