From: Dragos Oancea Date: Mon, 10 Apr 2023 12:29:47 +0000 (+0300) Subject: [mod_opusfile] coverity CID 1468424 (Missing break in switch) X-Git-Tag: v1.10.10^2~61^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98c0482844a51a99197906983c0b7942b7993130;p=thirdparty%2Ffreeswitch.git [mod_opusfile] coverity CID 1468424 (Missing break in switch) --- diff --git a/src/mod/formats/mod_opusfile/mod_opusfile.c b/src/mod/formats/mod_opusfile/mod_opusfile.c index 1560142263..a065108f5c 100644 --- a/src/mod/formats/mod_opusfile/mod_opusfile.c +++ b/src/mod/formats/mod_opusfile/mod_opusfile.c @@ -654,6 +654,7 @@ static switch_status_t switch_opusstream_stream_decode(opus_stream_context_t *co } switch_goto_status(SWITCH_STATUS_SUCCESS, end); } + break; case OP_EREAD: /*An underlying read operation failed. This may signal a truncation attack from an source.*/ case OP_EFAULT: /* An internal memory allocation failed. */