View | Details | Raw Unified
Collapse All | Expand All

(-) src/ptlib/common/contain.cxx.orig (-1 / +1 lines)
 Lines 2465-2471   PString & PString::vsprintf(const char * Link Here 
  PAssert(SetSize(2000), POutOfMemory);
  PAssert(SetSize(2000), POutOfMemory);
  ::vsprintf(theArray+len, fmt, arg);
  ::vsprintf(theArray+len, fmt, arg);
#else
#else
  PINDEX size = 0;
  PINDEX size = len;
  do {
  do {
    size += 1000;
    size += 1000;
    PAssert(SetSize(size), POutOfMemory);
    PAssert(SetSize(size), POutOfMemory);