[*] Wrap Window bit validation around hasWindowbits check
This commit is contained in:
parent
9aa5d9f434
commit
9681450156
@ -16,14 +16,17 @@ namespace Aurora::Compression
|
||||
{
|
||||
out = 0;
|
||||
|
||||
if (info.windowBits < 0)
|
||||
if (info.hasWindowbits)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
if (info.windowBits < 0)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
if (info.windowBits > 15)
|
||||
{
|
||||
return {};
|
||||
if (info.windowBits > 15)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
||||
if (info.alg == ECompresionType::eGZip)
|
||||
|
Loading…
Reference in New Issue
Block a user