From 84e1e871e7601d78f7ae6713b8caa4e76a47dba0 Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Sat, 23 Aug 2008 16:05:47 +0000 Subject: [PATCH] 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 --- src/perl/perl-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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