diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-16 21:22:19 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-16 21:22:19 +0000 |
commit | e7b167ae68a0a8237f177d8a0e9b1c73ccc616b8 (patch) | |
tree | 7d2a433e2781803ff01e5485ee759545d3ffb935 /gcc/cppfiles.c | |
parent | ad8563d3c838fa1747718ea968e23dd30e91cdf9 (diff) | |
download | ppe42-gcc-e7b167ae68a0a8237f177d8a0e9b1c73ccc616b8.tar.gz ppe42-gcc-e7b167ae68a0a8237f177d8a0e9b1c73ccc616b8.zip |
2000-07-16 Laurynas Biveinis <lauras@softhome.net>
* cppfiles.c (read_name_map): Set map_list_ptr->map_list_map to NULL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35065 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index 2b153719e5c..fe9f0262e3b 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -881,6 +881,7 @@ read_name_map (pfile, dirname) map_list_ptr = ((struct file_name_map_list *) xmalloc (sizeof (struct file_name_map_list))); map_list_ptr->map_list_name = xstrdup (dirname); + map_list_ptr->map_list_map = NULL; name = (char *) alloca (strlen (dirname) + strlen (FILE_NAME_MAP_FILE) + 2); strcpy (name, dirname); |