frokaikan
frokaikan
Here is the program ```c++ #include #include #include #include "matio.h" int main (int argc, char **argv) { mat_t *ptr = Mat_Open(argv[1], 0); auto *var = Mat_VarReadNextInfo(ptr); Mat_VarFree(var); Mat_Close(ptr); } ```...
I use cmake to build the library then run: ./img2ktx -o out.ktx -f BC3 input/not_kitty.png here's not_kitty.png: [not_kitty.zip](https://github.com/cdwfs/img2ktx/files/2292229/not_kitty.zip) ``` Loaded input/not_kitty.png -- width=32 height=32 comp=3 compressing mip 0 layer 0:...
* Compiler Used: minw 8.1.0 * Operating System: Windows 10 * Architecture (ARM/x86/32bit/64bit/etc): 64 bit use chai.exe to run the following code. If I define a WRONG function like this:...
Hi, thanks for producing the great work! I'm trying to generate fuzz harness for `freetype2`. I first build freetype on `/asan_build` with `AddressSanitizer`, then run `graphfuzz` in `/gfuzz_dir` with ```...
How to generate DDF C/ Java code? (Use CCodeGenerator/ JavaCodeGenerator) Or, how to modify the SDF code to support DDF Director?
like #1963 , call archive_read_support_format_cab twice leads to a memory leak. Here is the code: ```c++ #include extern "C" { #include "../libarchive/archive.h" } int main (int argc, char** argv) {...
Here is the code: ```c++ #include extern "C" { #include "archive.h" } int main (int argc, char** argv) { archive* reader = archive_read_new(); archive_read_support_format_rar5(reader); archive_read_support_format_rar5(reader); // sigsegv here archive_read_free(reader); }...
**Describe the bug** stbi_load (or clearly, stbi__tga_load) should return immidiately with bad req_comp, but it leads to heap-buffer-overflow **To Reproduce** Here is the code: ```c++ #define STB_IMAGE_IMPLEMENTATION #include "stb_image.h" int...
Here is the code: ```c++ #include #include extern "C" { #include "codec_api.h" } void* readFile (char* fileName, size_t& size) { FILE* filePtr = fopen(fileName, "r"); fseek(filePtr, 0, SEEK_END); size =...