mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
* init.c: Uninitialized `SCM last' may be used.
This commit is contained in:
parent
47ce0f920e
commit
3d40d7b66a
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@ scm_boot_guile (result, argc, argv, in, out, err, init_func, boot_cmd)
|
|||
#endif
|
||||
if (!setjmp_val)
|
||||
{
|
||||
SCM last;
|
||||
SCM last = SCM_UNDEFINED;
|
||||
scm_init_signals ();
|
||||
|
||||
/* Call the initialization function passed in by the user, if
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue