Commit 8743e9759e82bc07f19ee64fbb610d76da02f6d9

Ozkan Sezer 2018-09-26T17:11:40

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/src/stdlib/SDL_string.c b/src/stdlib/SDL_string.c
index 0ba6be7..047b320 100644
--- a/src/stdlib/SDL_string.c
+++ b/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) {