mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-31 02:33:44 +00:00
[sofia-sip] Fix Out-of-bound array access warning: String copy function overflows destination buffer in nua_stack_event()
This commit is contained in:
parent
7b708c2c77
commit
d438e1e547
@ -1 +1 @@
|
|||||||
Thu Feb 20 10:09:05 UTC 2020
|
Thu Feb 20 11:10:22 UTC 2020
|
||||||
|
@ -313,7 +313,7 @@ int nua_stack_event(nua_t *nua, nua_handle_t *nh, msg_t *msg,
|
|||||||
assert(t == t_end); assert(b == end); (void)end;
|
assert(t == t_end); assert(b == end); (void)end;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
p = e + 1;
|
p = ee + 1;
|
||||||
|
|
||||||
ee->ee_nua = nua_stack_ref(nua);
|
ee->ee_nua = nua_stack_ref(nua);
|
||||||
e->e_event = event;
|
e->e_event = event;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user