mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-10 04:20:06 +00:00
Fix #1391: Remove use of nonportable strnlen().
This commit is contained in:
parent
b91189dbe5
commit
4f88853412
@ -1111,11 +1111,11 @@ static void OutputDouble(TInfoSink& out, double value, TOutputTraverser::EExtraO
|
||||
const char* format = "%f";
|
||||
if (fabs(value) > 0.0 && (fabs(value) < 1e-5 || fabs(value) > 1e12))
|
||||
format = "%-.13e";
|
||||
snprintf(buf, maxSize, format, value);
|
||||
int len = snprintf(buf, maxSize, format, value);
|
||||
assert(len < maxSize);
|
||||
|
||||
// remove a leading zero in the 100s slot in exponent; it is not portable
|
||||
// pattern: XX...XXXe+0XX or XX...XXXe-0XX
|
||||
int len = (int)strnlen(buf, maxSize);
|
||||
if (len > 5) {
|
||||
if (buf[len-5] == 'e' && (buf[len-4] == '+' || buf[len-4] == '-') && buf[len-3] == '0') {
|
||||
buf[len-3] = buf[len-2];
|
||||
|
Loading…
Reference in New Issue
Block a user