From: Jay Freeman (saurik) Date: Tue, 20 Oct 2009 23:01:52 +0000 (+0000) Subject: Removed dlclose() as it scares me and would cause everything to crash horribly if... X-Git-Tag: v0.9.432~303 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/92841c2ccf963e8c5fb68ed350a4c99a904c123f Removed dlclose() as it scares me and would cause everything to crash horribly if it ever actually worked. --- diff --git a/Connector.cpp b/Connector.cpp index dddaa8b..f73022f 100644 --- a/Connector.cpp +++ b/Connector.cpp @@ -22,8 +22,9 @@ struct CYServer : }; apr_status_t CYPoolDLClose_(void *data) { - void *handle(reinterpret_cast(data)); - dlclose(handle); + // XXX: this is an interesting idea + /* void *handle(reinterpret_cast(data)); + dlclose(handle); */ return APR_SUCCESS; }