(Fformat): Don't scan past end of format string that
ends in %. Reported by: Johan Bockgård.
This commit is contained in:
@@ -3424,7 +3424,7 @@ usage: (format STRING &rest OBJECTS) */)
|
||||
digits to print after the '.' for floats, or the max.
|
||||
number of chars to print from a string. */
|
||||
|
||||
while (index ("-0# ", *format))
|
||||
while (*format && index ("-0# ", *format))
|
||||
++format;
|
||||
|
||||
if (*format >= '0' && *format <= '9')
|
||||
|
||||
Reference in New Issue
Block a user