Skip to content

v0.3-bsod

Latest
Compare
Choose a tag to compare
@ykfre ykfre released this 08 Feb 23:07
· 6 commits to master since this release

Features:

  1. 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.
  2. 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.
  3. Add warnings/treat warnings as errors according to the visual studio project configuration.

Bug Fixes:

  1. Fix bug where "." wasn't added for the include when compiled files for the new code change
  2. Fix bug of a handle to a CPP file wasn't close - prevent writing to the file.
  3. Make sure BsodSurvivor Visual Studio will be the active window after updating the binary.