From 6caaf70451f6632d11ff1fd81b72f56cf681a7d6 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Sun, 11 Jun 2000 16:34:53 +0000 Subject: [PATCH] - Make shockwave work with virtual_dir (a bit ugly). - swf_openfile doesn't return any values. This seems to mean that you can - only have one file open at a time. --- ext/swf/swf.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ext/swf/swf.c b/ext/swf/swf.c index 5a0c006184..eaea922cc0 100644 --- a/ext/swf/swf.c +++ b/ext/swf/swf.c @@ -168,10 +168,19 @@ PHP_FUNCTION(swf_openfile) convert_to_double_ex(b); na = Z_STRVAL_PP(name); + +#ifdef VIRTUAL_DIR + if (virtual_filepath(na, &na)) { + return; + } +#endif swf_openfile((strcasecmp("php://stdout", na)==0) ? fileno(stdout) : na, (float)Z_DVAL_PP(sizeX), (float)Z_DVAL_PP(sizeY), (float)Z_DVAL_PP(frameRate), (float)Z_DVAL_PP(r), (float)Z_DVAL_PP(g), (float)Z_DVAL_PP(b)); +#ifdef VIRTUAL_DIR + free(na); +#endif } /* }}} */ @@ -1144,4 +1153,4 @@ PHP_FUNCTION(swf_posround) } /* }}} */ -#endif \ No newline at end of file +#endif -- 2.50.1