mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
ac82cbf88d
When udp connection is used, there are several memory leaks happen after run a long time. Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com> Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
18 lines
470 B
Diff
18 lines
470 B
Diff
rewrite-expr-grammar.ym: Free up token.
|
|
|
|
Upsteam-Status: Backport
|
|
|
|
Reported-by: Xufeng Zhang <xufeng.zhang@windriver.com>
|
|
Signed-off-by: Viktor Tusa <tusavik@gmail.com>
|
|
---
|
|
--- a/lib/rewrite/rewrite-expr-grammar.ym
|
|
+++ b/lib/rewrite/rewrite-expr-grammar.ym
|
|
@@ -78,6 +78,7 @@
|
|
|
|
$$ = log_template_new(configuration, $1);
|
|
CHECK_ERROR(log_template_compile($$, $1, &error), @1, "Error compiling template (%s)", error->message);
|
|
+ free($1);
|
|
}
|
|
;
|
|
|