* but required since the compiler (at least vc) doesn't like
* passing the address of a char const* for a char** arg.
*/
- char *getpath;
+ char *getpath = NULL;
rv = apr_filepath_get(&getpath, flags, p);
rootpath = getpath;
if (rv != APR_SUCCESS)
apr_pool_t *pool)
{
apr_status_t status;
- apr_finfo_t finfo;
+ apr_finfo_t finfo = {0};
/* Don't do anything if we can't handle the requested attributes */
if (!(attr_mask & (APR_FILE_ATTR_READONLY
apr_pool_t *pool)
{
apr_status_t status;
- apr_finfo_t finfo;
+ apr_finfo_t finfo = {0};
status = apr_stat(&finfo, fname, APR_FINFO_ATIME, pool);
if (status) {