From 92841c2ccf963e8c5fb68ed350a4c99a904c123f Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 20 Oct 2009 23:01:52 +0000 Subject: [PATCH] Removed dlclose() as it scares me and would cause everything to crash horribly if it ever actually worked. --- Connector.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.49.0