about summary refs log tree commit diff
path: root/posix/glob.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2010-03-27 05:48:17 -0700
committerUlrich Drepper <drepper@redhat.com>2010-03-27 05:48:17 -0700
commita5f3b0f830920ae31e24cad8fe5d877bba556764 (patch)
treec9e1a650c05225d04075c0a8ec15182ff67f807e /posix/glob.c
parent463ed2f0bee56eb61a83b401a0134a4b8955178a (diff)
downloadglibc-a5f3b0f830920ae31e24cad8fe5d877bba556764.tar.gz
glibc-a5f3b0f830920ae31e24cad8fe5d877bba556764.tar.xz
glibc-a5f3b0f830920ae31e24cad8fe5d877bba556764.zip
Fix one more issue with the glob patch.
Diffstat (limited to 'posix/glob.c')
-rw-r--r--posix/glob.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/glob.c b/posix/glob.c
index 3ae055d430..e410d50ffe 100644
--- a/posix/glob.c
+++ b/posix/glob.c
@@ -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] == '~')
     {