diff options
Diffstat (limited to 'ext/swf/swf.c')
| -rw-r--r-- | ext/swf/swf.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/swf/swf.c b/ext/swf/swf.c index a33f613773..b06eba7fd6 100644 --- a/ext/swf/swf.c +++ b/ext/swf/swf.c @@ -200,7 +200,7 @@ PHP_FUNCTION(swf_openfile)  	if (strcasecmp("php://stdout", tmpna) == 0) {  		FILE *fp; -		fp = php_open_temporary_file(NULL, "php_swf_stdout", &na); +		fp = php_open_temporary_file(NULL, "php_swf_stdout", &na TSRMLS_CC);  		if (!fp) {  			free_na = 0;  			RETURN_FALSE; @@ -215,7 +215,7 @@ PHP_FUNCTION(swf_openfile)  	}  #ifdef VIRTUAL_DIR -	if (virtual_filepath(na, &tmpna)) { +	if (virtual_filepath(na, &tmpna TSRMLS_CC)) {  		if (free_na) {  			efree(na);  		}  | 
