OSDN Git Service

* python/py-auto-load.c (source_section_scripts): Call xfree
authordevans <devans>
Sat, 10 Dec 2011 22:51:46 +0000 (22:51 +0000)
committerdevans <devans>
Sat, 10 Dec 2011 22:51:46 +0000 (22:51 +0000)
instead of free.

gdb/ChangeLog
gdb/python/py-auto-load.c

index 13998f5..d96e3ae 100644 (file)
@@ -1,3 +1,8 @@
+2011-12-10  Doug Evans  <dje@google.com>
+
+       * python/py-auto-load.c (source_section_scripts): Call xfree
+       instead of free.
+
 2011-12-10  Hui Zhu  <teawater@gmail.com>
            Yao Qi  <yao@codesourcery.com>
 
index 2a17ed0..62975ea 100644 (file)
@@ -314,7 +314,7 @@ Use `info auto-load-scripts [REGEXP]' to list them."),
          if (! in_hash_table)
            source_python_script_for_objfile (objfile, full_path);
          fclose (stream);
-         free (full_path);
+         xfree (full_path);
        }
     }
 }