Merge pull request #440 from signalwire/mod_rss

[mod_rss] scan-build: Fix dead assignments.
This commit is contained in:
Andrey Volk 2020-02-27 00:05:05 +04:00 committed by GitHub
commit b0d2ffcaec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -575,7 +575,6 @@ SWITCH_STANDARD_APP(rss_function)
if (entries[dtb.index].title_txt) {
switch_snprintf(tmpbuf + tmplen, sizeof(tmpbuf) - tmplen, "%s", entries[dtb.index].title_txt);
tmplen = (uint32_t) strlen(tmpbuf);
}
}
switch_core_speech_flush_tts(&sh);
@ -590,7 +589,6 @@ SWITCH_STANDARD_APP(rss_function)
}
if (cont) {
cont = 0;
continue;
}