mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-15 08:29:45 +00:00
FS-3386 Jeff Lenk found this one, Good Catch!
This commit is contained in:
parent
ec54acb738
commit
e420e17f84
@ -311,7 +311,6 @@ ESL_DECLARE(esl_status_t) esl_event_del_header_val(esl_event_t *event, const cha
|
|||||||
|
|
||||||
if (hp->idx) {
|
if (hp->idx) {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
hp->value = NULL;
|
|
||||||
|
|
||||||
for (i = 0; i < hp->idx; i++) {
|
for (i = 0; i < hp->idx; i++) {
|
||||||
FREE(hp->array[i]);
|
FREE(hp->array[i]);
|
||||||
@ -642,7 +641,7 @@ ESL_DECLARE(void) esl_event_destroy(esl_event_t **event)
|
|||||||
|
|
||||||
if (this->idx) {
|
if (this->idx) {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
this->value = NULL;
|
|
||||||
for (i = 0; i < this->idx; i++) {
|
for (i = 0; i < this->idx; i++) {
|
||||||
FREE(this->array[i]);
|
FREE(this->array[i]);
|
||||||
}
|
}
|
||||||
|
@ -802,7 +802,6 @@ SWITCH_DECLARE(switch_status_t) switch_event_del_header_val(switch_event_t *even
|
|||||||
|
|
||||||
if (hp->idx) {
|
if (hp->idx) {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
hp->value = NULL;
|
|
||||||
|
|
||||||
for (i = 0; i < hp->idx; i++) {
|
for (i = 0; i < hp->idx; i++) {
|
||||||
FREE(hp->array[i]);
|
FREE(hp->array[i]);
|
||||||
@ -1145,7 +1144,7 @@ SWITCH_DECLARE(void) switch_event_destroy(switch_event_t **event)
|
|||||||
|
|
||||||
if (this->idx) {
|
if (this->idx) {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
this->value = NULL;
|
|
||||||
for (i = 0; i < this->idx; i++) {
|
for (i = 0; i < this->idx; i++) {
|
||||||
FREE(this->array[i]);
|
FREE(this->array[i]);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user