From 9f4658427f3487bbcb2ee2cd77301b4060c8b833 Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Wed, 11 Sep 2002 22:43:58 +0000 Subject: [PATCH] virtual filepath fix, don't know why i bother, the module isn't threadsafe and never will be, but still... --- ext/swf/swf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/swf/swf.c b/ext/swf/swf.c index 9a5c792c3f..062aee0c62 100644 --- a/ext/swf/swf.c +++ b/ext/swf/swf.c @@ -192,7 +192,7 @@ PHP_FUNCTION(swf_openfile) { zval **name, **sizeX, **sizeY, **frameRate, **r, **g, **b; char *na, *tmpna; - zend_bool free_na; + zend_bool free_na = 0; if (ZEND_NUM_ARGS() != 7 || zend_get_parameters_ex(7, &name, &sizeX, &sizeY, &frameRate, &r, &g, &b) == FAILURE) { -- 2.50.1