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 memset call in xdl/data_io/packer/pack_feature #333

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jun 10, 2020

  1. Fix memset call in xdl/data_io/packer/pack_feature

    The `void *memset(void *s, int c, size_t n)` function takes the value to fill in its 2nd argument and the number of byte to fill in in 3rd.
    
    This commit fixes an invalid use of `memset` which had the two arguments swapped and it did not set any memory at all in the end due to that.
    disconnect3d committed Jun 10, 2020
    Configuration menu
    Copy the full SHA
    8a8b40f View commit details
    Browse the repository at this point in the history