Fix uninitialized use of length variable
Bad things must have been happening when this was hit.
This was introduced in commit 7656a075c7
This commit is contained in:
parent
4efa173475
commit
0a4bbaf5a5
|
@ -1202,6 +1202,9 @@ static switch_bool_t record_callback(switch_media_bug_t *bug, void *user_data, s
|
||||||
switch_time_t diff;
|
switch_time_t diff;
|
||||||
rh->wready = 1;
|
rh->wready = 1;
|
||||||
|
|
||||||
|
nframe = switch_core_media_bug_get_native_write_frame(bug);
|
||||||
|
len = nframe->datalen;
|
||||||
|
|
||||||
if (!rh->rready) {
|
if (!rh->rready) {
|
||||||
unsigned char fill_data[SWITCH_RECOMMENDED_BUFFER_SIZE] = {0};
|
unsigned char fill_data[SWITCH_RECOMMENDED_BUFFER_SIZE] = {0};
|
||||||
switch_size_t fill_len = len;
|
switch_size_t fill_len = len;
|
||||||
|
@ -1210,8 +1213,6 @@ static switch_bool_t record_callback(switch_media_bug_t *bug, void *user_data, s
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
nframe = switch_core_media_bug_get_native_write_frame(bug);
|
|
||||||
len = nframe->datalen;
|
|
||||||
|
|
||||||
|
|
||||||
if (rh->last_write_time && rh->last_write_time < now) {
|
if (rh->last_write_time && rh->last_write_time < now) {
|
||||||
|
|
Loading…
Reference in New Issue