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 potential buffer overflow #3146

Closed
wants to merge 3 commits into from

Commits on Nov 27, 2023

  1. Fix memcpy issue in MetaIndexes.cpp

    Size of pointer 'sub_x' used instead of size of its data. This is likely to lead to a buffer overflow (if the user is not lucky enough to be in a x32 bit machine). You probably intend to write 'sizeof(*sub_x)' or 'sizeof(float)' ?
    baderouaich authored Nov 27, 2023
    Configuration menu
    Copy the full SHA
    befd051 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2023

  1. Configuration menu
    Copy the full SHA
    e9883f3 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. Configuration menu
    Copy the full SHA
    f9b2498 View commit details
    Browse the repository at this point in the history