indeyets Thu Oct 16 11:59:37 2008 UTC
Modified files: (Branch: PHP_5_3)
/php-src/ext/standard exec.c
Log:
Fixed compilation warnings: tsrm_ls is not used here (anymore?)
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/exec.c?r1=1.113.2.3.2.1.2.12&r2=1.113.2.3.2.1.2.13&diff_format=u
Index: php-src/ext/standard/exec.c
diff -u php-src/ext/standard/exec.c:1.113.2.3.2.1.2.12
php-src/ext/standard/exec.c:1.113.2.3.2.1.2.13
--- php-src/ext/standard/exec.c:1.113.2.3.2.1.2.12 Sun Aug 17 15:23:45 2008
+++ php-src/ext/standard/exec.c Thu Oct 16 11:59:37 2008
@@ -16,7 +16,7 @@
| Ilia Alshanetsky <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: exec.c,v 1.113.2.3.2.1.2.12 2008/08/17 15:23:45 pajoye Exp $ */
+/* $Id: exec.c,v 1.113.2.3.2.1.2.13 2008/10/16 11:59:37 indeyets Exp $ */
#include <stdio.h>
#include "php.h"
@@ -268,8 +268,6 @@
char *cmd;
char *p = NULL;
size_t estimate = (2 * l) + 1;
-
- TSRMLS_FETCH();
cmd = safe_emalloc(2, l, 1);
@@ -358,7 +356,6 @@
int x, y = 0, l = strlen(str);
char *cmd;
size_t estimate = (4 * l) + 3;
- TSRMLS_FETCH();
cmd = safe_emalloc(4, l, 3); /* worst case */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php