diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2014-04-19 15:04:54 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2014-04-19 15:04:56 +0200 |
commit | 872409857351f28b1e3c21526bfa6606c918b176 (patch) | |
tree | ebe6e2c8a828f187e95fa2acf586efba59ad49a8 /guile | |
parent | ae0a524f688c858553372024eb0aab8bf5c5c02b (diff) | |
download | gnutls-872409857351f28b1e3c21526bfa6606c918b176.tar.gz |
do not override gnutls' allocation functions
That was not being done using the API, and overriding them
is no longer possible in 3.3.x.
Diffstat (limited to 'guile')
-rw-r--r-- | guile/src/core.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/guile/src/core.c b/guile/src/core.c index 6940eae079..b40e93e608 100644 --- a/guile/src/core.c +++ b/guile/src/core.c @@ -3364,11 +3364,6 @@ scm_init_gnutls (void) #include "core.x" /* Use Guile's allocation routines, which will run the GC if need be. */ - gnutls_malloc = scm_malloc; - gnutls_realloc = scm_realloc; - gnutls_secure_malloc = scm_malloc; - gnutls_free = free; - (void) gnutls_global_init (); scm_gnutls_define_enums (); |