diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-17 16:06:55 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-17 22:18:39 -0800 |
commit | b7125fb4ab26a2fc8df365cdb5cb591b5cc47e3e (patch) | |
tree | 6abeca81448dfd186c63b0d0961c9958f886d816 | |
parent | c078787a66d56a1e8191501614f66467d68a70d2 (diff) |
altos/lisp: Fix uninitialized values in ao_lisp_make_const
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/lisp/ao_lisp_make_const.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp/ao_lisp_make_const.c b/src/lisp/ao_lisp_make_const.c index 0f243eb0..495e48cd 100644 --- a/src/lisp/ao_lisp_make_const.c +++ b/src/lisp/ao_lisp_make_const.c @@ -306,8 +306,8 @@ main(int argc, char **argv) ao_poly val; struct ao_lisp_atom *a; struct ao_lisp_builtin *b; - int in_atom; - char *out_name; + int in_atom = 0; + char *out_name = NULL; int c; in = stdin; |