From: Ulrich Drepper Date: Thu, 24 Sep 1998 10:42:58 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_0_97~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=369b193374c8acc4e285c02cfed781f9fe3a018c;p=thirdparty%2Fglibc.git Update. 1998-09-24 Ulrich Drepper * misc/regexp.h (compile): Use alloca instead of __alloca. It won't pollute the namespace since the compiler will resolve it inline. Reported by Florian La Roche . --- diff --git a/ChangeLog b/ChangeLog index 20ab2badb15..f8a241f02d2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1998-09-24 Ulrich Drepper + + * misc/regexp.h (compile): Use alloca instead of __alloca. It won't + pollute the namespace since the compiler will resolve it inline. + Reported by Florian La Roche . + 1998-09-24 10:29 Ulrich Drepper * timezone/private.h: Update from tzcode1998g. diff --git a/misc/regexp.h b/misc/regexp.h index c2633eb8da9..54052b7b0f5 100644 --- a/misc/regexp.h +++ b/misc/regexp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. @@ -141,7 +141,7 @@ compile (char *instring, char *expbuf, __const char *endbuf, int eof) if (__current_size + 1 >= __input_size) { size_t __new_size = __input_size ? 2 * __input_size : 128; - char *__new_room = __alloca (__new_size); + char *__new_room = alloca (__new_size); /* See whether we can use the old buffer. */ if (__new_room + __new_size == __input_buffer) {