summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAn-Cheng Huang <ancheng@vyatta.com>2007-11-02 10:43:40 -0700
committerAn-Cheng Huang <ancheng@vyatta.com>2007-11-02 10:43:40 -0700
commitc4cb38f2d2df328aabd9f926a925872f9996c5cb (patch)
tree7e3bb76c81ed0e15d6051010895277480e85579c /src
parent83a14e262d5f0651d31140c9387ffdaa2299dc83 (diff)
downloadvyatta-cfg-c4cb38f2d2df328aabd9f926a925872f9996c5cb.tar.gz
vyatta-cfg-c4cb38f2d2df328aabd9f926a925872f9996c5cb.zip
* fix cli backend memory leak.
* export {copy,free}_path().
Diffstat (limited to 'src')
-rw-r--r--src/cli_new.c12
-rw-r--r--src/cli_val.h3
2 files changed, 10 insertions, 5 deletions
diff --git a/src/cli_new.c b/src/cli_new.c
index 075b7d0..c0fb845 100644
--- a/src/cli_new.c
+++ b/src/cli_new.c
@@ -73,13 +73,13 @@ static valstruct validate_value_val; /* value being validated
static int check_comp(vtw_node *cur);
static boolean check_syn_func(vtw_node *cur,const char* func,int line);
#define check_syn(cur) check_syn_func((cur),__FUNCTION__,__LINE__)
-static void copy_path(vtw_path *to, vtw_path *from);
+void copy_path(vtw_path *to, vtw_path *from);
static int eval_va(valstruct *res, vtw_node *node);
static int expand_string(char *p);
static void free_node(vtw_node *node);
static void free_node_tree(vtw_node *node);
static void free_reuse_list(void);
-static void free_path(vtw_path *path);
+void free_path(vtw_path *path);
static void free_string(char *str);
static vtw_node * get_node(void);
@@ -1048,7 +1048,7 @@ static boolean check_syn_func(vtw_node *cur,const char* func,int line)
copy path
if destination path owns memory, free it
**************************************************/
-static void copy_path(vtw_path *to, vtw_path *from)
+void copy_path(vtw_path *to, vtw_path *from)
{
if (to->path_buf)
my_free(to->path_buf);
@@ -1371,7 +1371,7 @@ static void free_node_tree(vtw_node *node)
free_node(node);
}
-static void free_path(vtw_path *path)
+void free_path(vtw_path *path)
{
if (path->path_ends)
my_free(path->path_ends);
@@ -1910,7 +1910,8 @@ static int set_reference_environment(const char* var_reference,
active_path.path = active_path.path_buf + get_f_seg_a_ptr()->f_segoff;
*n_cfg_path=clind_path_construct(active_path.path);
-
+
+ free_path(&active_path);
} else {
*n_cfg_path=clind_path_construct(n_vt_path.path);
@@ -1920,6 +1921,7 @@ static int set_reference_environment(const char* var_reference,
*n_tmpl_path=clind_path_construct(t_path.path);
*n_cmd_path=clind_path_construct(var_reference);
+ free_path(&n_vt_path);
}
return 0;
diff --git a/src/cli_val.h b/src/cli_val.h
index 7d57456..e147d4c 100644
--- a/src/cli_val.h
+++ b/src/cli_val.h
@@ -187,6 +187,9 @@ extern char *type_to_name(vtw_type_e type);
extern boolean execute_list(vtw_node *cur, vtw_def *def);
extern void touch_dir(const char *dp);
+extern void copy_path(vtw_path *to, vtw_path *from);
+extern void free_path(vtw_path *path);
+
void mark_paths(vtw_mark *markp);
void restore_paths(vtw_mark *markp);