pajoye Thu, 16 Sep 2010 13:34:51 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=303419
Log: - zend_list_insert TSRMLS fix (thx tony for the headup) Changed paths: U php/php-src/trunk/ext/gd/gd.c Modified: php/php-src/trunk/ext/gd/gd.c =================================================================== --- php/php-src/trunk/ext/gd/gd.c 2010-09-16 10:20:11 UTC (rev 303418) +++ php/php-src/trunk/ext/gd/gd.c 2010-09-16 13:34:51 UTC (rev 303419) @@ -1560,7 +1560,7 @@ * that overlap with the old fonts (with indices 1-5). The first * list index given out is always 1. */ - ind = 5 + zend_list_insert(font, le_gd_font); + ind = 5 + zend_list_insert(font, le_gd_font TSRMLS_CC); RETURN_LONG(ind); } @@ -4095,7 +4095,7 @@ } nf_ind->extend = 1; - l_ind = zend_list_insert(nf_ind, le_ps_font); + l_ind = zend_list_insert(nf_ind, le_ps_font TSRMLS_CC); RETURN_LONG(l_ind); } */ @@ -4144,7 +4144,7 @@ RETURN_FALSE; } - zend_list_insert(enc_vector, le_ps_enc); + zend_list_insert(enc_vector, le_ps_enc TSRMLS_CC); RETURN_TRUE; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php