Browse Source

Properly handle zero

Michael Hansen 11 years ago
parent
commit
1baefdd0f2
  1. 11
      Sources/Plasma/CoreLib/plFormat.cpp

11
Sources/Plasma/CoreLib/plFormat.cpp

@ -190,6 +190,11 @@ namespace plFormat_Private
template <typename _IType, size_t bits> template <typename _IType, size_t bits>
void _IFormatNumeric_Impl(char *output_end, _IType value, int radix, bool upperCase = false) void _IFormatNumeric_Impl(char *output_end, _IType value, int radix, bool upperCase = false)
{ {
if (value == 0) {
*(output_end - 1) = '0';
return;
}
while (value) while (value)
{ {
int digit = (value % radix); int digit = (value % radix);
@ -218,6 +223,9 @@ static plStringBuffer<char> _formatNumeric(const plFormat_Private::FormatSpec &f
temp /= radix; temp /= radix;
} }
if (max == 0)
max = 1;
plStringBuffer<char> buffer; plStringBuffer<char> buffer;
if (format.fPrecisionLeft > max) { if (format.fPrecisionLeft > max) {
char *output = buffer.CreateWritableBuffer(format.fPrecisionLeft); char *output = buffer.CreateWritableBuffer(format.fPrecisionLeft);
@ -252,6 +260,9 @@ static plStringBuffer<char> _formatDecimal(const plFormat_Private::FormatSpec &f
temp /= 10; temp /= 10;
} }
if (max == 0)
max = 1;
if (value < 0 || format.fDigitClass == plFormat_Private::kDigitDecAlwaysSigned) if (value < 0 || format.fDigitClass == plFormat_Private::kDigitDecAlwaysSigned)
++max; ++max;

Loading…
Cancel
Save