From cead81021cb94ba813d10f842c01f29ca65fd0e0 Mon Sep 17 00:00:00 2001 From: des Date: Wed, 22 Jan 2003 17:53:15 +0000 Subject: Initialization paranoia. --- lib/libfetch/fetch.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/libfetch/fetch.c') diff --git a/lib/libfetch/fetch.c b/lib/libfetch/fetch.c index 394c39a..fd44ad5 100644 --- a/lib/libfetch/fetch.c +++ b/lib/libfetch/fetch.c @@ -77,6 +77,10 @@ fetchXGet(struct url *URL, struct url_stat *us, const char *flags) int direct; direct = CHECK_FLAG('d'); + if (us != NULL) { + us->size = -1; + us->atime = us->mtime = 0; + } if (strcasecmp(URL->scheme, SCHEME_FILE) == 0) return (fetchXGetFile(URL, us, flags)); else if (strcasecmp(URL->scheme, SCHEME_FTP) == 0) @@ -131,6 +135,10 @@ fetchStat(struct url *URL, struct url_stat *us, const char *flags) int direct; direct = CHECK_FLAG('d'); + if (us != NULL) { + us->size = -1; + us->atime = us->mtime = 0; + } if (strcasecmp(URL->scheme, SCHEME_FILE) == 0) return (fetchStatFile(URL, us, flags)); else if (strcasecmp(URL->scheme, SCHEME_FTP) == 0) -- cgit v1.1