1 --- gcvt.c.orig 2009-11-06 00:45:45.000000000 -0800
2 +++ gcvt.c 2009-11-06 00:52:51.000000000 -0800
3 @@ -68,7 +68,7 @@ gcvt(double value, int ndigit, char *buf
7 - *dst++ = *lconv->decimal_point;
8 + dst = stpcpy(dst, lconv->decimal_point);
12 @@ -101,7 +101,7 @@ gcvt(double value, int ndigit, char *buf
15 *dst++ = '0'; /* zero before decimal point */
16 - *dst++ = *lconv->decimal_point;
17 + dst = stpcpy(dst, lconv->decimal_point);
18 for (i = decpt; digits[i] != '\0'; i++) {