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 uninitialized variables, memory leaks #5495

Merged
merged 6 commits into from
Jan 27, 2023

Commits on Jan 27, 2023

  1. Configuration menu
    Copy the full SHA
    305766f View commit details
    Browse the repository at this point in the history
  2. Fix read-past-end bug in DistanceFieldFont

    - starts_with was being passed an invalid C string pointer
    - instead, work on std::string_view the entire way
    Web-eWorks committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    9037320 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6a98109 View commit details
    Browse the repository at this point in the history
  4. Fix memory leak in LuaRef

    - Several hundreds of refs were leaking their m_copycount values, at 4 bytes per allocation
    Web-eWorks committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    cfe7b2b View commit details
    Browse the repository at this point in the history
  5. Fix memory leak in GasGiantJobs

    - GenFaceQuad request (and its owned resources including material instance) were never freed
    Web-eWorks committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    d0bf534 View commit details
    Browse the repository at this point in the history
  6. Fix memory leak in GeomTree

    - The edge index list was permanently leaked every time a GeomTree was constructed
    Web-eWorks committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    7efa8e7 View commit details
    Browse the repository at this point in the history