David Dudas commented on a discussion on lib/nettle/hpke/hpke-gmp.c: https://gitlab.com/gnutls/gnutls/-/merge_requests/1976#note_2815420770 > + > +#if HAVE_CONFIG_H > +#include "config.h" > +#endif > + > +#include <assert.h> > +#include <stdlib.h> > + > +#include "hpke-gmp.h" > + > +void *hpke_gmp_alloc(size_t n) > +{ > + void *(*alloc_func)(size_t); > + assert(n > 0); > + > + mp_get_memory_functions(&alloc_func, NULL, NULL); Removed these functions. Used gnutls_(malloc/free) instead. -- Reply to this email directly or view it on GitLab: https://gitlab.com/gnutls/gnutls/-/merge_requests/1976#note_2815420770 You're receiving this email because of your account on gitlab.com.
_______________________________________________ Gnutls-devel mailing list [email protected] http://lists.gnupg.org/mailman/listinfo/gnutls-devel
