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

src: fix stack-buffer overflow for long exception lines #2404

Closed
wants to merge 2 commits into from

Commits on Sep 3, 2015

  1. src: fix buffer overflow for long exception lines

    Long exception lines resulted in a stack buffer overflow or assertion
    because it was assumed snprintf not counts discarded chars
    or the assertion itself was incorrect: `(off) >= sizeof(arrow)`
    skomski committed Sep 3, 2015
    Configuration menu
    Copy the full SHA
    337cedd View commit details
    Browse the repository at this point in the history
  2. src: use standard conform snprintf on windows

    The version used before returned -1 on truncation
    which is not standard conform
    skomski committed Sep 3, 2015
    Configuration menu
    Copy the full SHA
    c154fde View commit details
    Browse the repository at this point in the history