Shawn O. Pearce schrieb: > +static void rp_error(const char *err, ...) __attribute__((format (printf, 1, 2))); > +static void rp_warning(const char *err, ...) __attribute__((format (printf, 1, 2))); > + > +static void report_message(const char *prefix, const char *err, va_list params) > +{ > + int sz = strlen(prefix); > + char msg[4096]; > + > + strncpy(msg, prefix, sz); > + sz += vsnprintf(msg + sz, sizeof(msg) - (sz + 1), err, params); > + msg[sz++] = '\n'; This writes beyond the buffer if it is too small because the return value tells how many characters *would* have been written if it were sufficiently large, no? > + > + if (use_sideband) > + send_sideband(1, 2, msg, sz, use_sideband); > + else > + xwrite(2, msg, sz); > +} > + > +static void rp_warning(const char *err, ...) > ... > +static void rp_error(const char *err, ...) > ... Looks like we need set_report_routine(). Or did you replace only selected error() and warning() calls by rp_error() and rp_warning()? -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html