diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-09-13 23:22:34 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2016-09-13 23:22:34 +0200 |
commit | 040f39843e3440b01d32d7620b8c14d576cdd8e3 (patch) | |
tree | e785add38fc9e0b92a75af0fe95907c4512e260a /lib/grammar_sandbox.c | |
parent | lib: Fix various memory leaks (diff) | |
download | frr-040f39843e3440b01d32d7620b8c14d576cdd8e3.tar.xz frr-040f39843e3440b01d32d7620b8c14d576cdd8e3.zip |
lib: Fix memory leak in ipv6_prefix_match
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/grammar_sandbox.c')
-rw-r--r-- | lib/grammar_sandbox.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/grammar_sandbox.c b/lib/grammar_sandbox.c index 5e01e6c05..41fee1c1c 100644 --- a/lib/grammar_sandbox.c +++ b/lib/grammar_sandbox.c @@ -356,7 +356,6 @@ new_cmd_token (enum cmd_token_type_t type, char *text, char *desc) void del_cmd_token (struct cmd_token_t *token) { - fprintf (stdout, "deleting token\n"); if (!token) return; if (token->text) |