Line 0
Link Here
|
|
|
1 |
--- ./orbitcpp/orb-cpp/orbitcpp_simple_seq.h.orig 2012-07-02 23:33:54.000000000 +0200 |
2 |
+++ ./orbitcpp/orb-cpp/orbitcpp_simple_seq.h 2012-07-02 23:34:43.000000000 +0200 |
3 |
@@ -70,7 +70,7 @@ |
4 |
void _length_set_impl (size_t new_length) { |
5 |
if (new_length > this->_max) |
6 |
{ |
7 |
- buffer_t buffer_tmp = allocbuf (new_length); |
8 |
+ buffer_t buffer_tmp = this->allocbuf (new_length); |
9 |
if (!buffer_tmp) |
10 |
throw CORBA::NO_MEMORY (); |
11 |
|
12 |
@@ -78,7 +78,7 @@ |
13 |
buffer_tmp[i] = this->_buffer[i]; |
14 |
|
15 |
if (this->_release) |
16 |
- freebuf (this->_buffer); |
17 |
+ this->freebuf (this->_buffer); |
18 |
|
19 |
this->_release = true; |
20 |
this->_buffer = buffer_tmp; |