Daniel Collier
Daniel Collier
```cpp struct test { test(int x, int d, std::string dave) : _x(x), _d(d), _dave(dave) { } int _x; int _d; std::string _dave; }; struct test2 { test2(int x, int d,...
In Visual Studio 2022, if I put a breakpoint inside `page_fault_handler(DWORD exception_code)` it gets hit after first hitting the `ptr[0] = 0;` exception. In Raddbg, if I put a breakpoint...
A corrupt .ogg file can cause a setup_malloc failure inside start_decoder. Specifically in this code: ``` if (f->comment_list_length > 0) { f->comment_list = (char**) setup_malloc(f, sizeof(char*) * (f->comment_list_length)); if (f->comment_list...