diff options
author | Jilles Tjoelker <jilles@irssi.org> | 2008-08-23 16:05:47 +0000 |
---|---|---|
committer | jilles <jilles@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2008-08-23 16:05:47 +0000 |
commit | 84e1e871e7601d78f7ae6713b8caa4e76a47dba0 (patch) | |
tree | 9b35710a58e759677e98858044ec0191c3ca9232 /src/perl/perl-core.c | |
parent | 47f129e0a53905dada8a24cc48d107449c81aa51 (diff) | |
download | irssi-84e1e871e7601d78f7ae6713b8caa4e76a47dba0.zip |
Fix crash on startup if perl is compiled in.
bug #618
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4872 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/perl-core.c')
-rw-r--r-- | src/perl/perl-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perl/perl-core.c b/src/perl/perl-core.c index 5c418928..e7b59eb8 100644 --- a/src/perl/perl-core.c +++ b/src/perl/perl-core.c @@ -123,7 +123,7 @@ void perl_scripts_init(void) my_perl = perl_alloc(); perl_construct(my_perl); - perl_parse(my_perl, xs_init, &argc, args, NULL); + perl_parse(my_perl, xs_init, argc, args, NULL); #if PERL_STATIC_LIBS == 1 perl_eval_pv("Irssi::Core::boot_Irssi_Core();", TRUE); #endif |