From: Andre Noll Date: Wed, 4 Jun 2008 15:35:23 +0000 (+0200) Subject: Fix an embarassing bug in make_message(). X-Git-Tag: v0.1.0~85 X-Git-Url: http://git.tuebingen.mpg.de/?p=osl.git;a=commitdiff_plain;h=57b98a922b02c22d27ab69cbdcd3e2f028f4447e Fix an embarassing bug in make_message(). Outch. --- diff --git a/osl.c b/osl.c index c0e70cf..d41923f 100644 --- a/osl.c +++ b/osl.c @@ -57,6 +57,7 @@ static __must_check __printf_1_2 __malloc char *make_message(const char *fmt, .. free(p); return NULL; } + p = q; } return p; }