Bug 877087 - Clear mDsFile after the OPP connection is dropped, r=gyeh

This commit is contained in:
Eric Chou 2013-05-30 15:00:06 +08:00
Родитель 9fe0c5b821
Коммит fe8af01a74
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -461,6 +461,7 @@ BluetoothOppManager::AfterOppDisconnected()
mConnected = false;
mLastCommand = 0;
mPacketLeftLength = 0;
mDsFile = nullptr;
ClearQueue();
@ -494,6 +495,7 @@ BluetoothOppManager::DeleteReceivedFile()
if (mDsFile && mDsFile->mFile) {
mDsFile->mFile->Remove(false);
mDsFile = nullptr;
}
}