stas Fri, 16 Apr 2010 23:36:53 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=298107
Log: fix non-ts build Changed paths: U php/php-src/trunk/ext/com_dotnet/com_persist.c U php/php-src/trunk/ext/com_dotnet/com_wrapper.c Modified: php/php-src/trunk/ext/com_dotnet/com_persist.c =================================================================== --- php/php-src/trunk/ext/com_dotnet/com_persist.c 2010-04-16 23:32:50 UTC (rev 298106) +++ php/php-src/trunk/ext/com_dotnet/com_persist.c 2010-04-16 23:36:53 UTC (rev 298107) @@ -54,8 +54,8 @@ } #define FETCH_STM() \ + php_istream *stm = (php_istream*)This; \ TSRMLS_FETCH(); \ - php_istream *stm = (php_istream*)This; \ if (GetCurrentThreadId() != stm->engine_thread) \ return RPC_E_WRONG_THREAD; Modified: php/php-src/trunk/ext/com_dotnet/com_wrapper.c =================================================================== --- php/php-src/trunk/ext/com_dotnet/com_wrapper.c 2010-04-16 23:32:50 UTC (rev 298106) +++ php/php-src/trunk/ext/com_dotnet/com_wrapper.c 2010-04-16 23:36:53 UTC (rev 298107) @@ -87,8 +87,8 @@ /* }}} */ #define FETCH_DISP(methname) \ + php_dispatchex *disp = (php_dispatchex*)This; \ TSRMLS_FETCH(); \ - php_dispatchex *disp = (php_dispatchex*)This; \ if (COMG(rshutdown_started)) { \ trace(" PHP Object:%p (name:unknown) %s\n", disp->object, methname); \ } else { \
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php