|
From: Klaus R. <kl...@re...> - 2008-10-30 20:41:48
|
Hi,
>
> I made a ming upgrade on my server. Whenever I create an action (new
> SWFAction()) longer then 2000 characters I get :
> child pid 2608 exit signal Segmentation fault (11).
> I suspect a memory leak is causing this problem and it might be
> related to the problem discussed here.
>
I tried the following to reproduce the crash:
<?
$m = new SWFMovie();
$file = fopen("test.as", "r");
$script = fread($file, filesize("test.as"));
$a = new SWFAction($script);
$m->add($a);
$m->save("test.swf");
?>
where test.as consists of 3000 times of
trace("test");
Could you produce a simple testcase out of the crashing code please?
Klaus
|