]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2005-05-08 Yoshinori K. Okuji <okuji@enbug.org>
authorokuji <okuji@localhost>
Sun, 8 May 2005 02:18:14 +0000 (02:18 +0000)
committerokuji <okuji@localhost>
Sun, 8 May 2005 02:18:14 +0000 (02:18 +0000)
  * stage2/fsys_xfs.c (next_dentry): Use arrays of arrays instead of
  arrays of pointers for USUAL, to avoid read-only strings. Reported
  by Sven Wegener <swegener@gentoo.org>.

ChangeLog
THANKS
docs/grub.8
docs/mbchk.1
stage2/fsys_xfs.c

index 68699faadb8ea3a029eea5a4724c969e68710591..a7c3a4a3817f8a0752d51220e99b89f73da3a648 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-05-08  Yoshinori K. Okuji  <okuji@enbug.org>
+
+       * stage2/fsys_xfs.c (next_dentry): Use arrays of arrays instead of
+       arrays of pointers for USUAL, to avoid read-only strings. Reported
+       by Sven Wegener <swegener@gentoo.org>.
+
 2005-03-28  Yoshinori K. Okuji  <okuji@enbug.org>
 
        * lib/device.c (get_drive_geometry): Use ST.ST_SIZE instead of
diff --git a/THANKS b/THANKS
index 6e1d145060ddb3241b086321eaec7e3cb51871bb..853da1a5ec8369470c9c1ea62088dfabd28f6c94 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -105,6 +105,7 @@ Serguei Tzukanov <tzukanov@narod.ru>
 Stefan Ondrejicka <ondrej@idata.sk>
 Stephen Early <steve@greenend.org.uk>
 Steven Dick <ssd.gnu@mmae.ucf.edu>
+Sven Wegener <swegener@gentoo.org>
 Takehiro Suzuki <takehiro@coral.ocn.ne.jp>
 Taketo Kabe <kabe@sra-tohoku.co.jp>
 Thierry DELHAISE <thierry.delhaise@delhaise.com>
index 577b44a45e730c5087704e0844f8181ebbc7657b..4881905be08300f91a4c7587e2ff177dc57aebf1 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.23.
-.TH GRUB "8" "March 2005" "grub (GNU GRUB 0.96)" FSF
+.TH GRUB "8" "May 2005" "grub (GNU GRUB 0.96)" FSF
 .SH NAME
 grub \- the grub shell
 .SH SYNOPSIS
index 16b1a36a6294e1fb578d9710dd69e430bb28d724..6e41c17efc5bd1dfc0e95a3f6367be70802e0b12 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.23.
-.TH MBCHK "1" "March 2005" "mbchk (GNU GRUB 0.96)" FSF
+.TH MBCHK "1" "May 2005" "mbchk (GNU GRUB 0.96)" FSF
 .SH NAME
 mbchk \- check the format of a Multiboot kernel
 .SH SYNOPSIS
index 8ee31aeccd87b2c311e4ee5a8bdf9ea3fecbea9d..76c4c13b59b2d4b4680664bbc697c46302c787cc 100644 (file)
@@ -334,7 +334,7 @@ next_dentry (xfs_ino_t *ino)
 {
        int namelen = 1;
        int toread;
-       static char *usual[2] = {".", ".."};
+       static char usual[2][3] = {".", ".."};
        static xfs_dir2_sf_entry_t *sfe;
        char *name = usual[0];