blob: 7f16a3af7ad472498673b4fac9336ea7bff39c4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
diff -dPNur p7zip_9.13/CPP/Common/DynamicBuffer.h p7zip_9.13-ds/CPP/Common/DynamicBuffer.h
--- p7zip_9.13/CPP/Common/DynamicBuffer.h 2008-08-25 21:40:32.000000000 +0200
+++ p7zip_9.13-ds/CPP/Common/DynamicBuffer.h 2013-07-14 01:31:24.000000000 +0200
@@ -17,7 +17,7 @@
else
delta = 4;
delta = MyMax(delta, size);
- SetCapacity(this->_capacity + delta);
+ this->SetCapacity(this->_capacity + delta);
}
public:
CDynamicBuffer(): CBuffer<T>() {};
|