We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I suggest this fuzzer for continuous vulnerability checks.
/* * This fuzzer is generated by UTopia with some manual modifications. * (UTopia Project: https://github.com/Samsung/UTopia) */ #include "FuzzedDataProvider.h" #include "rlottie.h" #include <fstream> bool saveFile(std::string Path, std::string Content) { std::ofstream OFS(Path); if (!OFS.is_open()) return false; OFS << Content; return true; } extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, uint32_t size) { FuzzedDataProvider provider(data, size); std::string InputPath = "input"; auto input = provider.ConsumeRandomLengthString(); saveFile(InputPath, input); auto out = rlottie::Animation::loadFromFile(InputPath.c_str()); if (!out) return 0; out->totalFrame(); size_t width, height; out->size(width, height); return 0; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I suggest this fuzzer for continuous vulnerability checks.
The text was updated successfully, but these errors were encountered: