Skip to content
New issue

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

fix issue #7 - broken document context initialization - GetVAFromSecOffset result check #8

Merged
merged 1 commit into from
May 26, 2016

Conversation

buggins
Copy link
Contributor

@buggins buggins commented May 26, 2016

StackFrame.cpp
info.Address = (Address64) session->GetVAFromSecOffset( line.Section, line.Offset );if( info.Address )

Current check:
if( info.Address )
return E_FAIL;

Fix:
if( !info.Address )
return E_FAIL;

@rainers
Copy link
Owner

rainers commented May 26, 2016

OOps, I broke that in cee4dd5. Sorry

@rainers rainers merged commit b912ebb into rainers:master May 26, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants