From 25058db066f68f62854cdbce12b800df9d75d698 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Fri, 21 Dec 2001 03:50:07 +0000 Subject: [PATCH] Use memset() instead. --- ext/standard/file.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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", -- 2.50.1