diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2024-08-30 09:05:11 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2024-09-01 13:07:46 -0400 |
| commit | d97c535c1e11904585b97da894d49b766b2d270a (patch) | |
| tree | 5dea632b43d39fdaa3384563913ad8abec168fbb /zebra/zebra_vty.c | |
| parent | a556f6e38b404ae1b90a52b23e5afacd64ab4d45 (diff) | |
*: Create termtable specific temp memory
When trying to track down a MTYPE_TMP memory leak
it's harder to search for it when you happen to
have some usage of ttable_dump. Let's just give
it it's own memory type so that we can avoid
confusion in the future.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_vty.c')
| -rw-r--r-- | zebra/zebra_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c index 0459781efd..501e9d5268 100644 --- a/zebra/zebra_vty.c +++ b/zebra/zebra_vty.c @@ -3917,7 +3917,7 @@ DEFUN (show_zebra, out = ttable_dump(table, "\n"); vty_out(vty, "%s\n", out); - XFREE(MTYPE_TMP, out); + XFREE(MTYPE_TMP_TTABLE, out); ttable_del(table); vty_out(vty, |
