mirror of
https://github.com/team-charls/charls
synced 2025-03-28 21:03:13 +00:00

Fuzzing testing of the C# implementation found a scenario that would cause an endless loop during decoding. This defect was also present in the C++ implementation. This condition was tested with an ASSERT. Using an ASSERT is fine when encoding, but an explicit check is needed when decoding as the input data is in that case untrusted.
28 lines
590 B
C++
28 lines
590 B
C++
// Copyright (c) Team CharLS.
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#include "pch.hpp"
|
|
|
|
#include "../src/run_mode_context.hpp"
|
|
|
|
|
|
using Microsoft::VisualStudio::CppUnitTestFramework::Assert;
|
|
|
|
namespace charls::test {
|
|
|
|
TEST_CLASS(run_mode_context_test)
|
|
{
|
|
public:
|
|
TEST_METHOD(update_variable) // NOLINT
|
|
{
|
|
run_mode_context context{0, 4};
|
|
|
|
context.update_variables(3, 27, 0);
|
|
|
|
Assert::AreEqual(3, context.compute_golomb_coding_parameter());
|
|
Assert::AreEqual(3, context.compute_golomb_coding_parameter_checked());
|
|
}
|
|
};
|
|
|
|
} // namespace charls::test
|