mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-19 22:00:12 +10:00
Implement Qualcomm Sahara VIP and fix a few bugs
* Qualcomm Sahara VIP * Project Cleanup * Allow unlocking an already unlocked phone
This commit is contained in:
+3
-3
@@ -246,15 +246,15 @@ namespace WPinternals
|
||||
BufferSize -= b.Length;
|
||||
Monitor.Pulse(BufferQueue);
|
||||
|
||||
BytesRead += (b.Length - BufferOffset);
|
||||
BytesRead += b.Length - BufferOffset;
|
||||
BufferOffset = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
Array.Copy(b, BufferOffset, buffer, offset + BytesRead, count - BytesRead);
|
||||
|
||||
BufferOffset += (count - BytesRead);
|
||||
BytesRead += (count - BytesRead);
|
||||
BufferOffset += count - BytesRead;
|
||||
BytesRead += count - BytesRead;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user