Merge pull request #328 from dragos-oancea/sofia-nua_register-val-never_read-

[sofia-sip] scan-build: Value stored to 's' during its initialization is never read - nua_handle_contact_by_via()
This commit is contained in:
Andrey Volk 2020-02-12 22:11:25 +04:00 committed by GitHub
commit 92a87119bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -2068,9 +2068,10 @@ sip_contact_t *nua_handle_contact_by_via(nua_handle_t *nh,
/* Make transport parameter lowercase */
if (strlen(transport) < (sizeof _transport)) {
char *s = strcpy(_transport, transport);
char *s;
short c;
strcpy(_transport, transport);
for (s = _transport; (c = *s) && c != ';'; s++)
if (isupper(c))
*s = tolower(c);