other-licenses/7zstub/src/7zip/Compress/Branch/BranchCoder.cpp

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

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 }

mercurial