mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
Fix one more issue with the glob patch.
This commit is contained in:
parent
463ed2f0be
commit
a5f3b0f830
@ -1,3 +1,7 @@
|
||||
2010-03-27 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* posix/glob.c (glob): Initialize oldcount early, too.
|
||||
|
||||
2010-03-26 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/i386/fcntl.c: Define miss_F_GETOWN_EX
|
||||
|
@ -436,6 +436,8 @@ glob (pattern, flags, errfunc, pglob)
|
||||
}
|
||||
}
|
||||
|
||||
oldcount = pglob->gl_pathc + pglob->gl_offs;
|
||||
|
||||
/* Find the filename. */
|
||||
filename = strrchr (pattern, '/');
|
||||
#if defined __MSDOS__ || defined WINDOWS32
|
||||
@ -553,8 +555,6 @@ glob (pattern, flags, errfunc, pglob)
|
||||
}
|
||||
}
|
||||
|
||||
oldcount = pglob->gl_pathc + pglob->gl_offs;
|
||||
|
||||
#ifndef VMS
|
||||
if ((flags & (GLOB_TILDE|GLOB_TILDE_CHECK)) && dirname[0] == '~')
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user