aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bbcode/url_bbcode_test.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-09-22 23:55:56 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-09-22 23:56:31 +0200
commite28b93e0cc3d5bceb803b73c646cf51c153e7a5a (patch)
tree9de7976a15d2f36618f92172ed6e00ab60173dba /tests/bbcode/url_bbcode_test.php
parent7fca351e05fd47bb1aaef3611ee9b7d7c946b0b3 (diff)
downloadforums-e28b93e0cc3d5bceb803b73c646cf51c153e7a5a.tar
forums-e28b93e0cc3d5bceb803b73c646cf51c153e7a5a.tar.gz
forums-e28b93e0cc3d5bceb803b73c646cf51c153e7a5a.tar.bz2
forums-e28b93e0cc3d5bceb803b73c646cf51c153e7a5a.tar.xz
forums-e28b93e0cc3d5bceb803b73c646cf51c153e7a5a.zip
[ticket/10729] Ensure that no bans exist before testing create_session
PHPBB3-10729
Diffstat (limited to 'tests/bbcode/url_bbcode_test.php')
0 files changed, 0 insertions, 0 deletions
class='ctrl'>
authorThierry Vignaud <tv@mageia.org>2011-11-22 21:52:48 +0000
committerThierry Vignaud <tv@mageia.org>2011-11-22 21:52:48 +0000
commita458c52cdacc9411c8187e33aeed000678a61cfc (patch)
tree7418b72914c813b08b8b2fa9276fecf1c7046ca1 /perl-install
parent180c89e87b8f0507e8838de1127417dd4a7b8ef9 (diff)
downloaddrakx-a458c52cdacc9411c8187e33aeed000678a61cfc.tar
drakx-a458c52cdacc9411c8187e33aeed000678a61cfc.tar.gz
drakx-a458c52cdacc9411c8187e33aeed000678a61cfc.tar.bz2
drakx-a458c52cdacc9411c8187e33aeed000678a61cfc.tar.xz
drakx-a458c52cdacc9411c8187e33aeed000678a61cfc.zip
(bug_handler) do not keep around the segfaulted process once we
collected all needed data when running drakbug this eats memory for nothing
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/standalone.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 4e85eae51..ebbea86fd 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,4 +1,6 @@
- drakbug:
+ o do not keep around the segfaulted process once we collected all needed data
+ when running drakbug
o regroup misc data in bugzilla
Version 13.70 - 22 November 2011
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
index 7a9a8aa81..33ad126aa 100644
--- a/perl-install/standalone.pm
+++ b/perl-install/standalone.pm
@@ -216,7 +216,7 @@ sub bug_handler {
exit(1);
}
$progname =~ s|.*/||;
- system('drakbug', if_($error, '--error', $error), '--incident', $progname);
+ exec('drakbug', if_($error, '--error', $error), '--incident', $progname);
c::_exit(1);
}