diff options
| author | jhurst <jhurst@cinecert.com> | 2007-02-28 19:19:39 +0000 |
|---|---|---|
| committer | jhurst <> | 2007-02-28 19:19:39 +0000 |
| commit | d3fc58a004ab9ae9bbbb1ac7174fa00465563a90 (patch) | |
| tree | 9f7fe0e3ed169c55aac5aafae354a2e9a4a9b93d /src/KM_util.cpp | |
| parent | 7a0811d76b7b94909b738336cb94b2d504e7ad18 (diff) | |
fixed remainder bug in MemIOReader
Diffstat (limited to 'src/KM_util.cpp')
| -rwxr-xr-x | src/KM_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KM_util.cpp b/src/KM_util.cpp index 867f236..1d2cc11 100755 --- a/src/KM_util.cpp +++ b/src/KM_util.cpp @@ -974,7 +974,7 @@ Kumu::MemIOReader::MemIOReader(const ByteString* Buf) : m_p(0), m_capacity(0), m_size(0) { m_p = Buf->RoData(); - m_capacity = Buf->Capacity(); + m_capacity = Buf->Length(); assert(m_p); assert(m_capacity); } |
