diff options
Diffstat (limited to 'gdb/mi/mi-parse.c')
-rw-r--r-- | gdb/mi/mi-parse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/mi/mi-parse.c b/gdb/mi/mi-parse.c index a739043..41e0351 100644 --- a/gdb/mi/mi-parse.c +++ b/gdb/mi/mi-parse.c @@ -136,14 +136,14 @@ mi_parse_free (struct mi_parse *parse) if (parse == NULL) return; if (parse->command != NULL) - free (parse->command); + xfree (parse->command); if (parse->token != NULL) - free (parse->token); + xfree (parse->token); if (parse->args != NULL) - free (parse->args); + xfree (parse->args); if (parse->argv != NULL) freeargv (parse->argv); - free (parse); + xfree (parse); } |