mirror of
https://github.com/gflags/gflags.git
synced 2025-04-06 05:55:05 +00:00
Fix a bug in StringPrintf() that caused it to not print large strings properly.
R=nilton DELTA=1 (0 added, 0 deleted, 1 changed) Revision created by MOE tool push_codebase. MOE_MIGRATION=2886 git-svn-id: https://gflags.googlecode.com/svn/trunk@59 6586e3c6-dcc4-952a-343f-ff74eb82781d
This commit is contained in:
parent
8233556d44
commit
beb69a876b
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ inline void InternalStringPrintf(std::string* output, const char* format,
|
|||
va_end(backup_ap);
|
||||
|
||||
if ((bytes_written >= 0) && (bytes_written < length)) {
|
||||
output->append(space, bytes_written);
|
||||
output->append(buf, bytes_written);
|
||||
delete[] buf;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue