AP_Common: added return to ExpandingString append

This commit is contained in:
Andrew Tridgell 2021-04-05 16:53:29 +10:00
parent e055165eb8
commit 3fb280ff50
2 changed files with 9 additions and 6 deletions

View File

@ -84,16 +84,19 @@ void ExpandingString::printf(const char *format, ...)
/*
print into the buffer, expanding if needed
*/
void ExpandingString::append(const char *s, uint32_t len)
bool ExpandingString::append(const char *s, uint32_t len)
{
if (allocation_failed) {
return;
return false;
}
if (buflen - used < len && !expand(len)) {
return;
return false;
}
if (s != nullptr) {
memcpy(&buf[used], s, len);
}
used += len;
return true;
}
ExpandingString::~ExpandingString()

View File

@ -36,8 +36,8 @@ public:
// print into the string
void printf(const char *format, ...) FMT_PRINTF(2,3);
// append data to the string
void append(const char *s, uint32_t len);
// append data to the string. s can be null for zero fill
bool append(const char *s, uint32_t len);
// destructor
~ExpandingString();