зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1125776: Part1. Fix initialization of variables. r=cajbir
They could be used when non-initialized.
This commit is contained in:
Родитель
ab8d6cff23
Коммит
80732517a0
|
@ -160,7 +160,7 @@ TrackBuffer::AppendData(LargeDataBuffer* aData, int64_t aTimestampOffset)
|
|||
return false;
|
||||
}
|
||||
|
||||
int64_t start, end;
|
||||
int64_t start = 0, end = 0;
|
||||
if (mParser->ParseStartAndEndTimestamps(aData, start, end)) {
|
||||
start += aTimestampOffset;
|
||||
end += aTimestampOffset;
|
||||
|
|
Загрузка…
Ссылка в новой задаче