2005-08-20 Paul Eggert <eggert@cs.ucla.edu>
- * srclist.txt: Add glibc bugs 1220, 1221, 1222, 1223, 1224.
+ * srclist.txt: Add glibc bugs 1220, 1221, 1222, 1223, 1224, 1225.
2005-08-19 Paul Eggert <eggert@cs.ucla.edu>
-# $Id: srclist.txt,v 1.75 2005-08-21 00:29:47 eggert Exp $
+# $Id: srclist.txt,v 1.76 2005-08-21 00:43:34 eggert Exp $
# Files for which we are not the source. See ./srclistvars.sh for the
# variable definitions.
#
# http://sources.redhat.com/bugzilla/show_bug.cgi?id=1216
# http://sources.redhat.com/bugzilla/show_bug.cgi?id=1220
+# http://sources.redhat.com/bugzilla/show_bug.cgi?id=1225
#$LIBCSRC/posix/regexec.c lib gpl
#
# c89 changes $LIBCSRC/string/strdup.c lib gpl
+2005-08-20 Jim Meyering <jim@meyering.net>
+
+ * regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
+ of unused local, dfa.
+
2005-08-20 Paul Eggert <eggert@cs.ucla.edu>
* regcomp.c (create_initial_state): Remove duplicate decl.
{
reg_errcode_t err;
int start, length;
+#ifdef _LIBC
re_dfa_t *dfa = (re_dfa_t *)preg->buffer;
+#endif
if (eflags & ~(REG_NOTBOL | REG_NOTEOL | REG_STARTEND))
return REG_BADPAT;
regmatch_t *pmatch;
int nregs, rval;
int eflags = 0;
+#ifdef _LIBC
re_dfa_t *dfa = (re_dfa_t *)bufp->buffer;
+#endif
/* Check for out-of-range. */
if (BE (start < 0 || start > length, 0))