diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2010-05-02 15:24:45 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2010-05-02 15:24:45 +0000 |
commit | 5459f37747e9bca691eae40a74fab6084d1d30a2 (patch) | |
tree | b8d2aec586a17ac34d29251ade89ae0953df46f6 /Build/source/texk/bibtex8 | |
parent | bfda35382348309e97d9dd46c36b1bb0519d371f (diff) |
fixed a bug in the macro BIB_XRETALLOC_STRING.
git-svn-id: svn://tug.org/texlive/trunk@18082 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/bibtex8')
-rw-r--r-- | Build/source/texk/bibtex8/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/bibtex8/bibtex.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/bibtex8/ChangeLog b/Build/source/texk/bibtex8/ChangeLog index 528deb82818..9375588de22 100644 --- a/Build/source/texk/bibtex8/ChangeLog +++ b/Build/source/texk/bibtex8/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/bibtex8/bibtex.h b/Build/source/texk/bibtex8/bibtex.h index c5454b15285..bd708229711 100644 --- a/Build/source/texk/bibtex8/bibtex.h +++ b/Build/source/texk/bibtex8/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__ */ |