diff options
Diffstat (limited to 'src/interfaces/ecpg/preproc/ecpg.c')
-rw-r--r-- | src/interfaces/ecpg/preproc/ecpg.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/preproc/ecpg.c b/src/interfaces/ecpg/preproc/ecpg.c index f12b799850c..1fe777845b7 100644 --- a/src/interfaces/ecpg/preproc/ecpg.c +++ b/src/interfaces/ecpg/preproc/ecpg.c @@ -23,6 +23,7 @@ extern char *optarg; struct _include_path *include_paths; static int no_auto_trans = 0; +struct cursor *cur = NULL; static void usage(char *progname) @@ -138,6 +139,24 @@ main(int argc, char *const argv[]) { struct cursor *ptr; + /* remove old cursor definitions if any are still there */ + for (ptr = cur; ptr != NULL; ptr=ptr->next) + { + struct arguments *l1, *l2; + + free(ptr->command); + free(ptr->name); + for (l1 = argsinsert; l1; l1 = l2) + { + l2 = l1->next; + free(l1); + } + for (l1 = argsresult; l1; l1 = l2) + { + l2 = l1->next; + free(l1); + } + } /* initialize lex */ lex_init(); |