Browse Source

SDL_vsnprintf: when '.' is specified, take precision as 0 if it is < 0.

Ozkan Sezer 6 years ago
parent
commit
8743e9759e
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/stdlib/SDL_string.c

+ 3 - 0
src/stdlib/SDL_string.c

@@ -1618,6 +1618,9 @@ SDL_vsnprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, const char *fmt,
                 } else {
                     info.precision = 0;
                 }
+                if (info.precision < 0) {
+                    info.precision = 0;
+                }
             }
 
             while (!done) {