mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-26 05:38:22 +01:00
mux_demux_api_fuzzer.cc: fix -Wshadow warning
`bool mux` -> `use_mux_api` to avoid conflicting with WebPMux variable. Bug: webp:380121350 Change-Id: Ie3f8176efc296fae804c36ee0b27bf8e3034c6e8
This commit is contained in:
parent
25e17c686f
commit
a027aa93de
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
void MuxDemuxApiTest(std::string_view data_in, bool mux) {
|
void MuxDemuxApiTest(std::string_view data_in, bool use_mux_api) {
|
||||||
const size_t size = data_in.size();
|
const size_t size = data_in.size();
|
||||||
WebPData webp_data;
|
WebPData webp_data;
|
||||||
WebPDataInit(&webp_data);
|
WebPDataInit(&webp_data);
|
||||||
@ -34,7 +34,7 @@ void MuxDemuxApiTest(std::string_view data_in, bool mux) {
|
|||||||
// Extracted chunks and frames are not processed or decoded,
|
// Extracted chunks and frames are not processed or decoded,
|
||||||
// which is already covered extensively by the other fuzz targets.
|
// which is already covered extensively by the other fuzz targets.
|
||||||
|
|
||||||
if (mux) {
|
if (use_mux_api) {
|
||||||
// Mux API
|
// Mux API
|
||||||
WebPMux* mux = WebPMuxCreate(&webp_data, size & 2);
|
WebPMux* mux = WebPMuxCreate(&webp_data, size & 2);
|
||||||
if (!mux) return;
|
if (!mux) return;
|
||||||
|
Loading…
Reference in New Issue
Block a user