Merge pull request #278 from dragos-oancea/switch_loadable_module_nullptr
[core] scan-build: Access to field 'microseconds_per_packet' results in a dereference of a null pointer
This commit is contained in:
commit
fc13e7d783
|
@ -2678,7 +2678,13 @@ static void switch_loadable_module_sort_codecs(const switch_codec_implementation
|
|||
#endif
|
||||
|
||||
for (i = 0; i < arraylen; i++) {
|
||||
int this_ptime = array[i]->microseconds_per_packet / 1000;
|
||||
int this_ptime;
|
||||
|
||||
if (!array[i]) {
|
||||
continue;
|
||||
}
|
||||
|
||||
this_ptime = array[i]->microseconds_per_packet / 1000;
|
||||
|
||||
if (!strcasecmp(array[i]->iananame, "ilbc")) {
|
||||
this_ptime = 20;
|
||||
|
|
Loading…
Reference in New Issue