]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 27 Jan 2005 20:53:23 +0000 (20:53 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 27 Jan 2005 20:53:23 +0000 (20:53 +0000)
2005-01-27  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/unix/sysv/linux/alpha/oldglob.c (__old_globfree): Also
copy gl_offs.  Patch by Sergey Tikhonov <tsv@solvo.ru>.

ChangeLog
sysdeps/unix/sysv/linux/alpha/oldglob.c

index 98be25bf3cbbfdca6a094fd492309ff2e4a8dbd2..55b780b2b5d6300839bd632a059cb8228f663a58 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-27  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/alpha/oldglob.c (__old_globfree): Also
+       copy gl_offs.  Patch by Sergey Tikhonov <tsv@solvo.ru>.
+
 2005-01-27  Paolo Bonzini  <bonzini@gnu.org>
 
        [BZ #558]
index 9d39176f6bbae72b1ed4808d9fbd6c8de8589be7..6d9b79f2c3f6415ececa596989bf308dd23b5b5c 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998, 2000, 2004 Free Software Foundation, Inc.
+/* Copyright (C) 1998, 2000, 2004, 2005 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -91,6 +91,7 @@ __old_globfree (old_glob_t *pglob)
   /* We only need these two symbols.  */
   correct.gl_pathc = pglob->gl_pathc;
   correct.gl_pathv = pglob->gl_pathv;
+  correct.gl_offs = pglob->gl_offs;
 
   globfree (&correct);
 }