mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-05-09 09:05:51 +00:00
[core] scan-build: Dereference of null pointer (loaded from variable 'result') - switch_ivr_play_and_detect_speech()
This commit is contained in:
parent
1b66e76548
commit
b446dc7370
@ -4624,7 +4624,9 @@ done:
|
|||||||
if (state.done) {
|
if (state.done) {
|
||||||
status = SWITCH_STATUS_SUCCESS;
|
status = SWITCH_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
*result = state.result;
|
if (result) {
|
||||||
|
*result = state.result;
|
||||||
|
}
|
||||||
|
|
||||||
arg_recursion_check_stop(args);
|
arg_recursion_check_stop(args);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user