From: pk910 Date: Sun, 27 Nov 2011 02:37:52 +0000 (+0100) Subject: fixed small issues in CGod.class.php and remove old debug files X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=commitdiff_plain;h=5ac7e3d6d087207bf85ea4cf199ca7726ee78ff0;hp=cb8ae96abd0d097059516dddda611a0725d4ea8d fixed small issues in CGod.class.php and remove old debug files --- diff --git a/Bots/CGod.class.php b/Bots/CGod.class.php index db64989..a0227eb 100644 --- a/Bots/CGod.class.php +++ b/Bots/CGod.class.php @@ -66,6 +66,8 @@ class {$_NAME} extends Bot { public function loop() { foreach($this->ccache as $id => $c) { if(!$this->checkstate($c)) { + unlink("tmp/debug_".$c['id'].".c"); + unlink("tmp/debug_".$c['id']); unset($this->ccache[$id]); } } @@ -92,7 +94,7 @@ class {$_NAME} extends Bot { $fp = fopen("tmp/debug_".$entry['id'].".c", "w"); fwrite($fp, "#include \"includes.h\"\n".$exp[1]); fclose($fp); - $err = shell_exec("gcc -o tmp/debug_".$entry['id']." tmp/debug_".$entry['id'].".c"); + $err = shell_exec("gcc -o tmp/debug_".$entry['id']." tmp/debug_".$entry['id'].".c 2>&1"); if($err) { $err=str_replace("\r","",$err); $lines=explode("\n",$err); @@ -106,10 +108,12 @@ class {$_NAME} extends Bot { $this->uplink->privmsg($this->c, $entry['channel'], $line); } } - if(!file_exists("tmp/debug_".$entry['id'])) + if(!file_exists("tmp/debug_".$entry['id'])) { + unlink("tmp/debug_".$entry['id'].".c"); break; + } $descriptor = array(0 => array("pipe", "r"),1 => array("pipe", "w"),2 => array("pipe", "w")); - $entry['proc'] = proc_open('./debug_'.$entry['id'], $descriptor, $entry['pipes']); + $entry['proc'] = proc_open('tmp/debug_'.$entry['id'], $descriptor, $entry['pipes']); if(!is_resource($entry['proc'])) { $this->uplink->notice($this->c, $user, "error while loading c!"); return;