]> gcc.gnu.org Git - gcc.git/commitdiff
cppfiles.c (read_name_map): Set map_list_ptr->map_list_map to NULL.
authorLaurynas Biveinis <lauras@softhome.net>
Sun, 16 Jul 2000 21:22:19 +0000 (21:22 +0000)
committerZack Weinberg <zack@gcc.gnu.org>
Sun, 16 Jul 2000 21:22:19 +0000 (21:22 +0000)
2000-07-16  Laurynas Biveinis  <lauras@softhome.net>

* cppfiles.c (read_name_map): Set map_list_ptr->map_list_map to NULL.

From-SVN: r35065

gcc/ChangeLog
gcc/cppfiles.c

index ae4aedf90ea03326d9d6bdd6447330e52fb2c45e..534895e8b9ddba180a52481a4d8249c60a82436b 100644 (file)
@@ -1,3 +1,7 @@
+2000-07-16  Laurynas Biveinis  <lauras@softhome.net>
+
+       * cppfiles.c (read_name_map): Set map_list_ptr->map_list_map to NULL.
+
 2000-07-16  Mark Mitchell  <mark@codesourcery.com>
 
        * dwarf2out.c (expand_builtin_init_dwarf_reg_sizes): Fix typo.
index 2b153719e5c6d95f69409f3f2a6919cb4b0cb276..fe9f0262e3b3528321bd4c1cfafe50ead25abd21 100644 (file)
@@ -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);
This page took 0.081311 seconds and 5 git commands to generate.