Releases: ykfre/BsodSurvivor
Releases · ykfre/BsodSurvivor
v0.3-bsod
Features:
- Add a support for expressions evaluation including templates/default parameters/run a function on the local variables without changing the current function code, which Windbg doesn't support.
for example :
v.push_back(5);
v.at(0);
Please read the README for more details about this feature and its limitations. - When changing the code dynamically Windbg will move you to the changed function code if possible, and it should be possible if your changes are only calling functions/changing variables after the current line in the debugging.
- Add warnings/treat warnings as errors according to the visual studio project configuration.
Bug Fixes:
- Fix bug where "." wasn't added for the include when compiled files for the new code change
- Fix bug of a handle to a CPP file wasn't close - prevent writing to the file.
- Make sure BsodSurvivor Visual Studio will be the active window after updating the binary.
v0.2-bsod
v0.1-bsod: Merge pull request #1 from ykfre/first-release
Add support for the following components:
- Editing driver code dynamically without any need to uninstall the driver/ reboot the computer
- Jump to a previous line-in function, and calling needed destructors.
- Stop execution of the current function and return to the caller function and call needed destructors.