-
Notifications
You must be signed in to change notification settings - Fork 65
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
struct _key_fntable_int incompatible with memory leak detectors #109
Comments
This won't be a problem for normal memory leak detectors, unless they redefine |
Several memory detectors do indeed define |
see cisco#109 Signed-off-by: Hans Zandbelt <[email protected]>
this is now part of the maintenance fork here: |
Most memory leak detectors redefine the "free" function (and others).
The struct _key_fntable_int contains the following:
void (*free)(cjose_jwk_t *);
This clashes with a redefintion of "free".
Is it possible to rename this field (like "free_func")?
Thanks
The text was updated successfully, but these errors were encountered: