mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-18 23:32:17 -08:00
Uninitialized variable in ecl_make_package().
This commit is contained in:
parent
eb81631ebb
commit
88befa2d59
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ cl_object
|
|||
ecl_make_package(cl_object name, cl_object nicknames, cl_object use_list)
|
||||
{
|
||||
const cl_env_ptr env = ecl_process_env();
|
||||
cl_object x, l, other;
|
||||
cl_object x, l, other = Cnil;
|
||||
|
||||
/* Type checking, coercions, and the like, happen before we
|
||||
* acquire the lock */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue