Cleaned up FlatBufferBuilder clearing.

Change-Id: I81cf4d268670bdd11d1d56ca9f2de78c120df842
Tested: on Linux.
This commit is contained in:
Wouter van Oortmerssen 2018-01-16 09:39:35 -08:00
parent f0769b60ab
commit 5cee340ad3
1 changed files with 9 additions and 10 deletions

View File

@ -538,23 +538,23 @@ class vector_downward {
if (buf_) {
assert(allocator_);
allocator_->deallocate(buf_, reserved_);
buf_ = nullptr;
}
reserved_ = 0;
buf_ = nullptr;
cur_ = nullptr;
scratch_ = nullptr;
clear();
}
void clear() {
if (buf_) {
cur_ = buf_ + reserved_;
scratch_ = buf_;
} else {
reserved_ = 0;
buf_ = nullptr;
cur_ = nullptr;
scratch_ = nullptr;
}
clear_scratch();
}
void clear_scratch() {
scratch_ = buf_;
}
// Relinquish the pointer to the caller.
@ -563,10 +563,8 @@ class vector_downward {
size());
allocator_ = nullptr;
own_allocator_ = false;
reserved_ = 0;
buf_ = nullptr;
cur_ = nullptr;
scratch_ = nullptr;
clear();
return fb;
}
@ -1534,6 +1532,7 @@ class FlatBufferBuilder {
void Finish(uoffset_t root, const char *file_identifier, bool size_prefix) {
NotNested();
buf_.clear_scratch();
// This will cause the whole buffer to be aligned.
PreAlign((size_prefix ? sizeof(uoffset_t) : 0) + sizeof(uoffset_t) +
(file_identifier ? kFileIdentifierLength : 0),