diff options
-rw-r--r-- | ext/standard/file.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index 389fed1bd4..48709bfb2f 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -296,7 +296,10 @@ PHP_FUNCTION(get_meta_tags) int saw_name = 0, saw_content = 0; char *name = NULL, *value = NULL, *temp = NULL; php_meta_tags_token tok, tok_last; - php_meta_tags_data md = {NULL, 0, 0, 0, 0, NULL, NULL, 0, 0}; + php_meta_tags_data md; + + /* Initiailize our structure */ + memset(&md, 0, sizeof(md)); /* Parse arguments */ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b", |