Skip to content

Commit 55fecba

Browse files
author
Sean Bright
committed
Remove unused variable.
1 parent da3b899 commit 55fecba

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ext/standard/file.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,6 @@ PHP_FUNCTION(get_meta_tags)
294294
int in_tag=0, in_meta_tag=0, done=0;
295295
int looking_for_val=0, have_name=0, have_content=0;
296296
int saw_name=0, saw_content=0;
297-
int num_parts=0;
298297
char *name=NULL, *value=NULL, *temp=NULL;
299298
php_meta_tags_token tok, tok_last;
300299
php_meta_tags_data md;
@@ -441,7 +440,7 @@ PHP_FUNCTION(get_meta_tags)
441440
name = value = NULL;
442441

443442
/* Reset all of our flags */
444-
in_tag = in_meta_tag = looking_for_val = num_parts = 0;
443+
in_tag = in_meta_tag = looking_for_val = 0;
445444
have_name = saw_name = 0;
446445
have_content = saw_content = 0;
447446
}

0 commit comments

Comments
 (0)