From: Sean Bright Date: Fri, 21 Dec 2001 03:50:07 +0000 (+0000) Subject: Use memset() instead. X-Git-Tag: PRE_ISSET_PATCH~463 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=25058db066f68f62854cdbce12b800df9d75d698;p=php Use memset() instead. --- 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",