diff --git a/fdbclient/JsonString.cpp b/fdbclient/JsonString.cpp old mode 100755 new mode 100644 index 59111ac5d4..3e92f9b8a6 --- a/fdbclient/JsonString.cpp +++ b/fdbclient/JsonString.cpp @@ -108,7 +108,7 @@ int JsonBuilder::coerceAsciiNumberToJSON(const char *s, int len, char *dst) { } // Allow one optional sign - if(*s == '-') { + if(*s == '-' || *s == '+') { *wptr++ = *s++; }