]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[mod_conference] Remove static from cJSON vars in conference_jlist 2339/head
authorAndrey Volk <andywolk@gmail.com>
Tue, 19 Dec 2023 19:42:54 +0000 (22:42 +0300)
committerAndrey Volk <andywolk@gmail.com>
Tue, 19 Dec 2023 19:42:54 +0000 (22:42 +0300)
src/mod/applications/mod_conference/mod_conference.c

index bf03d2a5bcd6d0bed33dbcb296c5d8556ec4005a..aa606170d5e7bb58254c04770b1b51fab1691eb4 100644 (file)
@@ -1363,7 +1363,7 @@ void conference_xlist(conference_obj_t *conference, switch_xml_t x_conference, i
 void conference_jlist(conference_obj_t *conference, cJSON *json_conferences)
 {
        conference_member_t *member = NULL;
-       static cJSON *json_conference, *json_conference_variables, *json_conference_members, *json_conference_member, *json_conference_member_flags;
+       cJSON *json_conference, *json_conference_variables, *json_conference_members, *json_conference_member, *json_conference_member_flags;
        switch_event_header_t *hp;
 
        switch_assert(conference != NULL);