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 bug: Index exceeds dimension bound #904

Merged
merged 2 commits into from Mar 27, 2018
Merged

Fix bug: Index exceeds dimension bound #904

merged 2 commits into from Mar 27, 2018

Commits on Mar 16, 2018

  1. Fix bug: Index exceeds dimension bound

    Fix github issue #899
    which came from e-support UOY-859712.
    
    The problem was that the vlen_max parameter
    to libsrc/var.c#NC_check_vlen was of type size_t.
    However, it is being called, sometimes, with values
    of size X_INT64_MAX. The resulting truncation was
    causing dimension failures as noted in the e-support
    report.
    
    Fix is to change the vlen_max argument (and some
    local variables in NC_check_vlen) to be of declared
    as unsigned long long.
    DennisHeimbigner committed Mar 16, 2018
    Configuration menu
    Copy the full SHA
    efe2fa7 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2018

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