summaryrefslogtreecommitdiff
path: root/lib/Buffer.cc
diff options
context:
space:
mode:
authorpixel <pixel>2003-11-27 12:40:44 +0000
committerpixel <pixel>2003-11-27 12:40:44 +0000
commit85cc12b6fae31e8f2d7014c5061c915c036d9369 (patch)
tree26aae45a6ed69cc85bf718b1424a5524cfb57fd9 /lib/Buffer.cc
parent23cebe4e31e1ddc15de71af393c4f1271e379124 (diff)
Buffer fix
Diffstat (limited to 'lib/Buffer.cc')
-rw-r--r--lib/Buffer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Buffer.cc b/lib/Buffer.cc
index d0e5af2..18eb814 100644
--- a/lib/Buffer.cc
+++ b/lib/Buffer.cc
@@ -110,7 +110,7 @@ Byte & Buffer::operator[](size_t p) {
}
if (p >= realsiz) {
memset(buffer + realsiz, 0, p - realsiz);
- realsiz = p;
+ realsiz = p + 1;
}
if (seekable) {
@@ -139,7 +139,7 @@ off_t Buffer::seek(off_t off, int wheel) throw (GeneralException) {
ptr = realsiz + off;
break;
}
- operator[](ptr) = operator[](ptr);
+ operator[](ptr);
return ptr;
}