diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2010-05-02 15:30:24 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2010-05-02 15:30:24 +0000 |
commit | 40d84354a4ce0220524c0802d85086474293c73c (patch) | |
tree | ee75dd2a801b813299b4ac45b5f86f1c6f9b1109 /Build | |
parent | 5459f37747e9bca691eae40a74fab6084d1d30a2 (diff) |
fixed a bug in the macro BIB_XRETALLOC_STRING.
git-svn-id: svn://tug.org/texlive/trunk@18083 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/bibtexu/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/bibtexu/bibtex.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/bibtexu/ChangeLog b/Build/source/texk/bibtexu/ChangeLog index 084c8821b04..b53075a929a 100644 --- a/Build/source/texk/bibtexu/ChangeLog +++ b/Build/source/texk/bibtexu/ChangeLog @@ -1,3 +1,7 @@ +2010-05-03 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + * bibtex.h: fixed a bug in the macro BIB_XRETALLOC_STRING. + 2010-03-24 Peter Breitenlohner <peb@mppmu.mpg.de> * bibtex*.[ch], gblvars.h, utils.c: Obtain Ent_Str_Size and diff --git a/Build/source/texk/bibtexu/bibtex.h b/Build/source/texk/bibtexu/bibtex.h index 337ba446cfd..58245149241 100644 --- a/Build/source/texk/bibtexu/bibtex.h +++ b/Build/source/texk/bibtexu/bibtex.h @@ -1480,7 +1480,7 @@ if (log_file != NULL)\ fprintf (log_file, "Reallocated %s (elt_size=%d) to %ld items from %ld.\n", \ array_name, (int) (length + 1), new_size, size_var); \ - MYRETALLOC (array_name, array_var, new_size * (length + 1), ASCIICode_T) + MYRETALLOC (array_name, array_var, (new_size) * (length + 1), ASCIICode_T) #endif /* __BIBTEX_H__ */ |