felipe Tue Mar 18 00:25:24 2008 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/standard exec.c Log: Fix build http://cvs.php.net/viewvc.cgi/php-src/ext/standard/exec.c?r1=1.113.2.3.2.5&r2=1.113.2.3.2.6&diff_format=u Index: php-src/ext/standard/exec.c diff -u php-src/ext/standard/exec.c:1.113.2.3.2.5 php-src/ext/standard/exec.c:1.113.2.3.2.6 --- php-src/ext/standard/exec.c:1.113.2.3.2.5 Mon Mar 17 23:02:26 2008 +++ php-src/ext/standard/exec.c Tue Mar 18 00:25:24 2008 @@ -16,7 +16,7 @@ | Ilia Alshanetsky <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: exec.c,v 1.113.2.3.2.5 2008/03/17 23:02:26 iliaa Exp $ */ +/* $Id: exec.c,v 1.113.2.3.2.6 2008/03/18 00:25:24 felipe Exp $ */ #include <stdio.h> #include "php.h" @@ -25,6 +25,7 @@ #include "safe_mode.h" #include "ext/standard/head.h" #include "ext/standard/file.h" +#include "basic_functions.h" #include "exec.h" #include "php_globals.h" #include "SAPI.h" @@ -265,6 +266,8 @@ register int x, y, l; char *cmd; char *p = NULL; + + TSRMLS_FETCH(); l = strlen(str); cmd = safe_emalloc(2, l, 1);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php