X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ferror.c;h=1149235a101ed20bb37781cc27a78d39875c990d;hb=ecc43f7ce6220952bac7d8e751ca102c60f9f812;hp=1c74a14febc0311b6e913b45ba005af904c22070;hpb=cd6df927ef3c7d7146ecccc967e522a373f708bc;p=gnulib.git diff --git a/lib/error.c b/lib/error.c index 1c74a14fe..1149235a1 100644 --- a/lib/error.c +++ b/lib/error.c @@ -90,9 +90,9 @@ extern void __error_at_line (int status, int errnum, const char *file_name, char *strerror_r (); # endif -#ifndef SIZE_MAX -# define SIZE_MAX ((size_t) -1) -#endif +# ifndef SIZE_MAX +# define SIZE_MAX ((size_t) -1) +# endif /* The calling program should define program_name and set it to the name of the executing program. */ @@ -147,19 +147,18 @@ error_tail (int status, int errnum, const char *message, va_list args) # define ALLOCA_LIMIT 2000 size_t len = strlen (message) + 1; const wchar_t *wmessage = L"out of memory"; - mbstate_t st; - size_t res; - const char *tmp; wchar_t *wbuf = (len < ALLOCA_LIMIT - ? (void *) alloca (len * sizeof *wbuf) + ? alloca (len * sizeof *wbuf) : len <= SIZE_MAX / sizeof *wbuf ? malloc (len * sizeof *wbuf) : NULL); if (wbuf) { + size_t res; + mbstate_t st; + const char *tmp = message; memset (&st, '\0', sizeof (st)); - tmp =message; res = mbsrtowcs (wbuf, &tmp, len, &st); wmessage = res == (size_t) -1 ? L"???" : wbuf; }