Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
1 // BranchCoder.cpp
3 #include "StdAfx.h"
4 #include "BranchCoder.h"
6 STDMETHODIMP CBranchConverter::Init()
7 {
8 _bufferPos = 0;
9 SubInit();
10 return S_OK;
11 }
13 STDMETHODIMP_(UInt32) CBranchConverter::Filter(Byte *data, UInt32 size)
14 {
15 UInt32 processedSize = SubFilter(data, size);
16 _bufferPos += processedSize;
17 return processedSize;
18 }