diff options
author | Sterling Hughes <sterling@php.net> | 2002-09-11 22:43:58 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2002-09-11 22:43:58 +0000 |
commit | 9f4658427f3487bbcb2ee2cd77301b4060c8b833 (patch) | |
tree | 3a3864a7b0affc1634dd802d1b3359d43e30a81b /ext/swf/swf.c | |
parent | b34bec20a7b83b67c8506e5c8a1bdd16d6fec665 (diff) | |
download | php-git-9f4658427f3487bbcb2ee2cd77301b4060c8b833.tar.gz |
virtual filepath fix, don't know why i bother, the module isn't threadsafe
and never will be, but still...
Diffstat (limited to 'ext/swf/swf.c')
-rw-r--r-- | ext/swf/swf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |