indeyets                Thu Oct 16 12:21:27 2008 UTC

  Modified files:              
    /php-src/ext/standard       exec.c 
  Log:
  MFB: Fixed compilation warnings: tsrm_ls is not used here (anymore?)
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/exec.c?r1=1.136&r2=1.137&diff_format=u
Index: php-src/ext/standard/exec.c
diff -u php-src/ext/standard/exec.c:1.136 php-src/ext/standard/exec.c:1.137
--- php-src/ext/standard/exec.c:1.136   Sun Aug 17 15:23:22 2008
+++ php-src/ext/standard/exec.c Thu Oct 16 12:21:27 2008
@@ -16,7 +16,7 @@
    |         Ilia Alshanetsky <[EMAIL PROTECTED]>                             |
    +----------------------------------------------------------------------+
  */
-/* $Id: exec.c,v 1.136 2008/08/17 15:23:22 pajoye Exp $ */
+/* $Id: exec.c,v 1.137 2008/10/16 12:21:27 indeyets Exp $ */
 
 #include <stdio.h>
 #include "php.h"
@@ -253,8 +253,6 @@
        char *cmd;
        char *p = NULL;
        size_t estimate = (2 * l) + 1;
-       
-       TSRMLS_FETCH();
 
        cmd = safe_emalloc(2, l, 1);
 
@@ -343,7 +341,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

Reply via email to