[11657] in bugtraq
Re: your mail
daemon@ATHENA.MIT.EDU (Volker Borchert)
Thu Sep 2 19:08:19 1999
Mime-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset=ISO-8859-1
Message-Id: <199909011245.OAA00864@Uranos.teknon.de>
Date: Wed, 1 Sep 1999 14:45:11 +0200
Reply-To: Volker Borchert <bt@TEKNON.DE>
From: Volker Borchert <bt@TEKNON.DE>
X-To: Olaf Kirch <okir@monad.swb.de>
To: BUGTRAQ@SECURITYFOCUS.COM
In-Reply-To: Your message of Mon, 30 Aug 1999 10:04:49 +0200
In message <19990830100449.C5813@monad.swb.de> you write:
|> The problem is that the mapped path patch does something like
|>
|> #define getcwd(buffer, length) mapped_path_cwd(buffer)
|> #define getwd(buffer) mapped_path_cwd(buffer)
Something like, but not exactly:
#define getwd(d) mapping_getwd(d)
#define getcwd(d,u) mapping_getcwd((d),(u))
and mapping_getcwd() _does_ honor the size argument.
vb