From: tromey Date: Mon, 30 Mar 2009 15:25:42 +0000 (+0000) Subject: PR preprocessor/39512: X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=102a730640e59ff7e9703b2a25ee4a1f7643bfd1;p=thirdparty%2Fgcc.git PR preprocessor/39512: * line-map.c (linemap_init): Initialize 'reallocator' field. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145300 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 4bf58690b6f3..26728325bc4d 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,8 @@ +2009-03-30 Tom Tromey + + PR preprocessor/39512: + * line-map.c (linemap_init): Initialize 'reallocator' field. + 2009-03-30 Jakub Jelinek PR target/39558 diff --git a/libcpp/line-map.c b/libcpp/line-map.c index 2802c672aaee..1c82902158a3 100644 --- a/libcpp/line-map.c +++ b/libcpp/line-map.c @@ -41,6 +41,7 @@ linemap_init (struct line_maps *set) set->highest_location = 0; set->highest_line = 0; set->max_column_hint = 0; + set->reallocator = 0; } /* Check for and warn about line_maps entered but not exited. */