diff options
Diffstat (limited to 'gdb/kod-cisco.c')
-rw-r--r-- | gdb/kod-cisco.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/kod-cisco.c b/gdb/kod-cisco.c index 0dffdb6..9351734 100644 --- a/gdb/kod-cisco.c +++ b/gdb/kod-cisco.c @@ -312,6 +312,6 @@ cisco_kod_request (char *arg, int from_tty) /* Free memory. */ for (i = 0; i < sync_next; ++i) - free (sync_ids[i]); - free (sync_ids); + xfree (sync_ids[i]); + xfree (sync_ids); } |