We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
in jwe.c, on line 1952:
cek = cjose_get_alloc()(cek_len); memcpy(cek, jwe->cek, cek_len);
Allocation result is not checked. We should add
if (!cek) { CJOSE_ERROR(err, CJOSE_ERR_NO_MEMORY); return NULL; }
The text was updated successfully, but these errors were encountered:
check result of cek = cjose_get_alloc()(cek_len) in jwe.c
54d4494
see: cisco#110 Signed-off-by: Hans Zandbelt <[email protected]>
this is now part of the maintenance fork here: https://github.com/OpenIDC/cjose/tree/version-0.6.2.x
Sorry, something went wrong.
No branches or pull requests
in jwe.c, on line 1952:
Allocation result is not checked. We should add
The text was updated successfully, but these errors were encountered: