summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Leadbeater <dgl@dgl.cx>2014-06-19 18:31:00 +0100
committerDavid Leadbeater <dgl@dgl.cx>2014-06-27 11:20:48 +0100
commitc5d81c598d7872308725f4f20523a1c593d5ca9e (patch)
tree3dbabd8670d4829ff50500c88503ff82b3c8fd15 /src
parent9d0d4d9437649ed96381120e68a8d4035f6ded7e (diff)
downloadirssi-c5d81c598d7872308725f4f20523a1c593d5ca9e.zip
Correct use of perl stack macros
Further to pull #49 this is the result of an audit of the use of perl stack macros. There were several cases where PUTBACK was being called where the stack pointer could be out-of-date. Also some misc. cleanup where the macros were used needlessly.
Diffstat (limited to 'src')
-rw-r--r--src/perl/common/Expando.xs6
-rw-r--r--src/perl/perl-common.c4
-rw-r--r--src/perl/perl-core.c3
-rw-r--r--src/perl/perl-signals.c1
-rw-r--r--src/perl/perl-sources.c5
-rw-r--r--src/perl/textui/Statusbar.xs1
6 files changed, 8 insertions, 12 deletions
diff --git a/src/perl/common/Expando.xs b/src/perl/common/Expando.xs
index 31b4f990..545d6891 100644
--- a/src/perl/common/Expando.xs
+++ b/src/perl/common/Expando.xs
@@ -73,6 +73,10 @@ static char *perl_expando_event(PerlExpando *rec, SERVER_REC *server,
ret = NULL;
if (SvTRUE(ERRSV)) {
+ (void) POPs;
+ /* call putback before emitting script error signal as that
+ * could manipulate the perl stack. */
+ PUTBACK;
/* make sure we don't get back here */
if (rec->script != NULL)
script_unregister_expandos(rec->script);
@@ -81,9 +85,9 @@ static char *perl_expando_event(PerlExpando *rec, SERVER_REC *server,
} else if (retcount > 0) {
ret = g_strdup(POPp);
*free_ret = TRUE;
+ PUTBACK;
}
- PUTBACK;
FREETMPS;
LEAVE;
diff --git a/src/perl/perl-common.c b/src/perl/perl-common.c
index 198da57d..18eb6d31 100644
--- a/src/perl/perl-common.c
+++ b/src/perl/perl-common.c
@@ -248,9 +248,9 @@ void irssi_callXS(void (*subaddr)(pTHX_ CV* cv), CV *cv, SV **mark)
dSP;
PUSHMARK(mark);
- (*subaddr)(aTHX_ cv);
-
PUTBACK;
+
+ (*subaddr)(aTHX_ cv);
}
void perl_chatnet_fill_hash(HV *hv, CHATNET_REC *chatnet)
diff --git a/src/perl/perl-core.c b/src/perl/perl-core.c
index 08d0738c..4bbfa329 100644
--- a/src/perl/perl-core.c
+++ b/src/perl/perl-core.c
@@ -58,9 +58,6 @@ static void perl_script_destroy_package(PERL_SCRIPT_REC *script)
perl_call_pv("Irssi::Core::destroy", G_VOID|G_EVAL|G_DISCARD);
- SPAGAIN;
-
- PUTBACK;
FREETMPS;
LEAVE;
}
diff --git a/src/perl/perl-signals.c b/src/perl/perl-signals.c
index a455cfd3..14b148f6 100644
--- a/src/perl/perl-signals.c
+++ b/src/perl/perl-signals.c
@@ -345,7 +345,6 @@ static void perl_call_signal(PERL_SCRIPT_REC *script, SV *func,
}
}
- PUTBACK;
FREETMPS;
LEAVE;
}
diff --git a/src/perl/perl-sources.c b/src/perl/perl-sources.c
index 1697dbd2..e4f68c8d 100644
--- a/src/perl/perl-sources.c
+++ b/src/perl/perl-sources.c
@@ -68,7 +68,6 @@ static void perl_source_destroy(PERL_SOURCE_REC *rec)
static int perl_source_event(PERL_SOURCE_REC *rec)
{
dSP;
- int retcount;
ENTER;
SAVETMPS;
@@ -78,8 +77,7 @@ static int perl_source_event(PERL_SOURCE_REC *rec)
PUTBACK;
perl_source_ref(rec);
- retcount = perl_call_sv(rec->func, G_EVAL|G_SCALAR);
- SPAGAIN;
+ perl_call_sv(rec->func, G_EVAL|G_DISCARD);
if (SvTRUE(ERRSV)) {
char *error = g_strdup(SvPV(ERRSV, PL_na));
@@ -90,7 +88,6 @@ static int perl_source_event(PERL_SOURCE_REC *rec)
if (perl_source_unref(rec) && rec->once)
perl_source_destroy(rec);
- PUTBACK;
FREETMPS;
LEAVE;
diff --git a/src/perl/textui/Statusbar.xs b/src/perl/textui/Statusbar.xs
index 522a93ee..d99d8d9b 100644
--- a/src/perl/textui/Statusbar.xs
+++ b/src/perl/textui/Statusbar.xs
@@ -89,7 +89,6 @@ static void perl_statusbar_event(char *function, SBAR_ITEM_REC *item,
}
}
- PUTBACK;
FREETMPS;
LEAVE;
}