[sofia-sip] scan-build: Value stored to 's' during its initialization is never read - nua_handle_contact_by_via()
This commit is contained in:
parent
1b66e76548
commit
846b5efbf3
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue