-
Hello, I'm getting several https://github.com/michelp/pgsodium/actions/runs/3847667847/jobs/6554414316#step:3:6792 For example:
These appear to be test failures so I'm not certain it's a big deal. -Michel |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The warning can be safely ignored. The function prototype indicates that the expected string length is In 089f850, the function prototype was changed to remove the length. That gets rid of the warning, doesn't change anything else. I'm not sure that it should be backported to |
Beta Was this translation helpful? Give feedback.
The warning can be safely ignored.
The function prototype indicates that the expected string length is
crypto_pwhash_STRBYTES
, but this test explicitly check that we don't crash and just return an error if the actual string is too short.In 089f850, the function prototype was changed to remove the length. That gets rid of the warning, doesn't change anything else. I'm not sure that it should be backported to
stable
since it changes a function prototype.