diff options
author | Sean Bright <elixer@php.net> | 2001-07-01 14:07:44 +0000 |
---|---|---|
committer | Sean Bright <elixer@php.net> | 2001-07-01 14:07:44 +0000 |
commit | 55fecbab7601110a9527f7ba3d17b8257a206bf5 (patch) | |
tree | 89283f4a24dd54bcdf4bab237b3c54782aced75e /ext/standard/file.c | |
parent | da3b899dd8023bc7590af8852270dcc035c19fe8 (diff) | |
download | php-git-55fecbab7601110a9527f7ba3d17b8257a206bf5.tar.gz |
Remove unused variable.
Diffstat (limited to 'ext/standard/file.c')
-rw-r--r-- | ext/standard/file.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index f38cf50a38..2abc0478e8 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -294,7 +294,6 @@ PHP_FUNCTION(get_meta_tags) int in_tag=0, in_meta_tag=0, done=0; int looking_for_val=0, have_name=0, have_content=0; int saw_name=0, saw_content=0; - int num_parts=0; char *name=NULL, *value=NULL, *temp=NULL; php_meta_tags_token tok, tok_last; php_meta_tags_data md; @@ -441,7 +440,7 @@ PHP_FUNCTION(get_meta_tags) name = value = NULL; /* Reset all of our flags */ - in_tag = in_meta_tag = looking_for_val = num_parts = 0; + in_tag = in_meta_tag = looking_for_val = 0; have_name = saw_name = 0; have_content = saw_content = 0; } |