-
Notifications
You must be signed in to change notification settings - Fork 29
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
Change/check free(pointer) pattern #189
Comments
I think we may just want to |
We could, but there was a lot of byte math that would need re-worked to support this. Particularly (If i recall) in the interactio nand ordering of byte fields sent back and forth to KMC. |
Robert and I walked through the GSFC setup and determined that the logic for what they were trying to do exists, seems it was just a config issue. |
Fix merged into |
This is an anti-pattern and introduces memory leaks. |
e.g. instead of free(aad) look at if(!aad) free(aad);
Identified a possible issue in TC_Apply if using an AEAD algorithm for encryption only. Need to assess further, deals with AAD not being generated for encryption only, but being freed in error cases.
The text was updated successfully, but these errors were encountered: