Fixed read of wrong address in empty strings

This commit is contained in:
llsth 2015-04-12 00:00:43 +02:00
parent df8205b810
commit c8f51571cc
1 changed files with 4 additions and 0 deletions

View File

@ -217,6 +217,10 @@ void CharBuffer::Append(const char* source)
bool CharBuffer::RemoveTrailing(const char c)
{
if (ptr == buf) {
return false;
}
if (*(--ptr) == c) {
return true;
}