Merge pull request #277 from dragos-oancea/switch_event_base_add_header-null

[core] scan-build: Null pointer passed as an argument to a 'nonnull' parameter - switch_event_base_add_header()
This commit is contained in:
Andrey Volk
2020-02-12 00:05:51 +04:00
committed by GitHub
+5 -1
View File
@@ -1114,7 +1114,11 @@ static switch_status_t switch_event_base_add_header(switch_event_t *event, switc
redraw:
len = 0;
for(j = 0; j < header->idx; j++) {
len += strlen(header->array[j]) + 2;
len += 2;
if (!header->array[j]) {
continue;
}
len += strlen(header->array[j]);
}
if (len) {