]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Remove uneeded module_pool declaration
authorChris Parker <cparker@segv.org>
Wed, 20 Jun 2007 14:45:28 +0000 (14:45 +0000)
committerChris Parker <cparker@segv.org>
Wed, 20 Jun 2007 14:45:28 +0000 (14:45 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5422 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/event_handlers/mod_radius_cdr/mod_radius_cdr.c

index 36c63a5d1bea00e8512350739eeec275c0128b26..b8a846a14c1550d48c30c2d303fd8a652ca2d01c 100644 (file)
@@ -40,8 +40,6 @@
 SWITCH_MODULE_LOAD_FUNCTION(mod_radius_cdr_load);
 SWITCH_MODULE_DEFINITION(mod_radius_cdr, mod_radius_cdr_load, NULL, NULL);
 
-static switch_memory_pool_t *module_pool = NULL;
-
 static char            cf[] = "mod_radius_cdr.conf";
 static char            my_dictionary[PATH_MAX];
 static char *          my_timeout; /* 5 */
@@ -471,8 +469,6 @@ static const switch_state_handler_table_t state_handlers = {
 
 SWITCH_MODULE_LOAD_FUNCTION(mod_radius_cdr_load)
 {
-       module_pool = pool;
-
        if (load_config() != SWITCH_STATUS_SUCCESS) {
                 return SWITCH_STATUS_TERM;
         }